CiteAssist文献引用检索
STDIO提供BibTeX引用数据的MCP服务器
提供BibTeX引用数据的MCP服务器
A Model Context Protocol server that provides BibTeX-formatted citation data from CiteAs and Google Scholar. Enhance your research workflow by integrating citation retrieval directly into your applications.
get_citeas_data
- Retrieve BibTeX-formatted citation for the specified resource from the CiteAs
resource
(string, required): DOI, URL, keywordget_scholar_data
- Retrieve BibTeX-formatted citations from the Google Scholar
query
(string, required): Search queryresults
(integer, optional): Number of results (default: 2)On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Development/Unpublished Servers Configuration:
"mcpServers": { "reference-mcp": { "command": "uv", "args": [ "--directory", "/path/to/project/dir", "run", "reference-mcp" ] } }
Published Servers Configuration:
"mcpServers": { "reference-mcp": { "command": "uvx", "args": [ "reference-mcp" ] } }
To install reference-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @ndchikin/reference-mcp --client claude
To prepare the package for distribution:
uv sync
uv build
This will create source and wheel distributions in the dist/
directory.
uv publish
Note: You'll need to set PyPI credentials via environment variables or command flags:
--token
or UV_PUBLISH_TOKEN
--username
/UV_PUBLISH_USERNAME
and --password
/UV_PUBLISH_PASSWORD
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm
with this command:
npx @modelcontextprotocol/inspector uv --directory /path/to/project/dir run reference-mcp
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.