You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 11, 2026. It is now read-only.
Citation analysis tools are implemented in tools.py but are currently disabled in the MCP server. The following functions exist but are commented out in main.py lines 260-263:
get_paper_references
get_paper_citations
get_citation_network
find_related_papers
Current State
These tools are:
✅ Implemented in src/artl_mcp/tools.py
❌ Commented out in src/artl_mcp/main.py
❌ Not available via MCP server
❌ Not available via CLI
Proposed Solution
Uncomment the tool registrations in main.py
Test that they work correctly via MCP
Update documentation to reflect they are available
Add integration tests
Related Issues
Related to citation functionality and may depend on external API availability/reliability.
References
src/artl_mcp/main.py:260-263 - Commented out registrations
Problem
Citation analysis tools are implemented in
tools.pybut are currently disabled in the MCP server. The following functions exist but are commented out inmain.pylines 260-263:get_paper_referencesget_paper_citationsget_citation_networkfind_related_papersCurrent State
These tools are:
src/artl_mcp/tools.pysrc/artl_mcp/main.pyProposed Solution
main.pyRelated Issues
Related to citation functionality and may depend on external API availability/reliability.
References
src/artl_mcp/main.py:260-263- Commented out registrationssrc/artl_mcp/tools.py:1578-1800- Tool implementations