## Implement: Register Zotero + pool tools in MCP server and update CLAUDE
Implement: Register Zotero + pool tools in MCP server and update CLAUDE.md¶
Wire up all the new biblio tools from today's session into the projio MCP server and update all documentation.
Tasks¶
- Register new tools in
src/projio/mcp/server.py: biblio_pool_promote(projio wrapper already in biblio.py)biblio_zotero_pull(projio wrapper already in biblio.py)biblio_zotero_push(projio wrapper already in biblio.py)-
biblio_zotero_status(projio wrapper already in biblio.py) -
Update
CLAUDE.md(projio root): - Add new tools to the
mcp/biblio.pytool list - Document the pool ecosystem briefly
-
Document Zotero integration tools
-
Update
packages/biblio/CLAUDE.md: - Add Zotero workflow documentation
- Add pool promote to the ingest pipeline
-
Document new MCP tools
-
Update
.claude/settings.json: -
Ensure
mcp__projio__biblio_pool_promote,mcp__projio__biblio_zotero_*are in allowed tools -
Verify imports work:
- Test that
from biblio.mcp import pool_promote, zotero_pull, zotero_push, zotero_statussucceeds - Test that
from biblio.zotero import ...works without pyzotero (graceful ImportError)
Key files¶
src/projio/mcp/server.py— tool registrationsrc/projio/mcp/biblio.py— already has wrappers (from background agent)CLAUDE.md— projio root documentationpackages/biblio/CLAUDE.md— biblio documentation.claude/settings.json— tool permissions
Related Notes¶
- issue-arash-20260403-210002-675833.md — Implements biblio_zotero_pull, one of the four tools being registered in this issue
- issue-arash-20260403-210020-146442.md — Implements biblio_zotero_push, one of the four tools being registered in this issue
- issue-arash-20260403-205942-590539.md — Implements biblio_pool_promote, one of the four tools being registered in this issue
- issue-arash-20260403-201609-055675.md — Spec for biblio ↔ Zotero integration model that these tools implement
- issue-arash-20260402-220237-298776.md — Same pattern: registering new MCP tools in server.py and updating CLAUDE.md documentation