
DocsMCP: Documentation MCP Server
DocsMCP is a Model Context Protocol (MCP) server that empowers Large Language Models (LLMs) with real-time access to both local and remote documentation sources...
Integrate academic literature search and citation workflows into your LLM agents with MCP-DBLP, a specialized MCP server for DBLP bibliographic data.
The MCP-DBLP server provides seamless access to the DBLP computer science bibliography database for Large Language Models (LLMs) using the Model Context Protocol (MCP). By integrating the DBLP API, MCP-DBLP enables AI assistants to search and retrieve academic publications, process citations, generate BibTeX entries, and perform fuzzy matching on publication titles and author names. It also supports the extraction and formatting of bibliographic information, embedded reference processing, and direct BibTeX export for high-accuracy citation management. With comprehensive search capabilities, filtering, and statistical analysis, MCP-DBLP empowers developers and researchers to enhance their workflows when working with academic literature, bibliographic data, and scholarly references.
instructions_prompt.md
to be used together with text containing citations. On Claude Desktop, this prompt can be accessed via the electrical plug icon.git clone https://github.com/szeider/mcp-dblp.git
cd mcp-dblp
uv venv
source .venv/bin/activate
uv pip install -e .
{
"mcpServers": {
"mcp-dblp": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-dblp/",
"run",
"mcp-dblp",
"--exportdir",
"/absolute/path/to/bibtex/export/folder/"
]
}
}
}
git clone https://github.com/szeider/mcp-dblp.git
cd mcp-dblp
uv venv
source .venv/bin/activate
uv pip install -e .
~/Library/Application/Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-dblp": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-dblp/",
"run",
"mcp-dblp",
"--exportdir",
"/absolute/path/to/bibtex/export/folder/"
]
}
}
}
git clone https://github.com/szeider/mcp-dblp.git
cd mcp-dblp
uv venv
source .venv/bin/activate
uv pip install -e .
{
"mcpServers": {
"mcp-dblp": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-dblp/",
"run",
"mcp-dblp",
"--exportdir",
"/absolute/path/to/bibtex/export/folder/"
]
}
}
}
git clone https://github.com/szeider/mcp-dblp.git
cd mcp-dblp
uv venv
source .venv/bin/activate
uv pip install -e .
{
"mcpServers": {
"mcp-dblp": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-dblp/",
"run",
"mcp-dblp",
"--exportdir",
"/absolute/path/to/bibtex/export/folder/"
]
}
}
}
Securing API Keys:
If API keys or secrets must be provided, use environment variables for security. Example configuration:
{
"mcpServers": {
"mcp-dblp": {
"command": "uv",
"args": [ ... ],
"env": {
"SOME_API_KEY": "${YOUR_API_KEY_ENV_VAR}"
},
"inputs": {
"api_key": "${YOUR_API_KEY_ENV_VAR}"
}
}
}
}
Using MCP in FlowHunt
To integrate MCP servers into your FlowHunt workflow, start by adding the MCP component to your flow and connecting it to your AI agent:
Click on the MCP component to open the configuration panel. In the system MCP configuration section, insert your MCP server details using this JSON format:
{
"mcp-dblp": {
"transport": "streamable_http",
"url": "https://yourmcpserver.example/pathtothemcp/url"
}
}
Once configured, the AI agent is now able to use this MCP as a tool with access to all its functions and capabilities. Remember to change “mcp-dblp” to whatever the actual name of your MCP server is and replace the URL with your own MCP server URL.
Section | Availability | Details/Notes |
---|---|---|
Overview | ✅ | Full description in README.md |
List of Prompts | ✅ | Instructions prompt in instructions_prompt.md |
List of Resources | ⛔ | No explicit MCP resource primitives described |
List of Tools | ✅ | Six tools listed in README.md (search, fuzzy_title_search, etc.) |
Securing API Keys | ✅ | Mentioned in general configuration example |
Sampling Support (less important in evaluation) | ⛔ | Not mentioned |
Based on the above, MCP-DBLP offers strong documentation and tooling, but lacks explicit resource and sampling support in the visible documentation. The prompt template and tool coverage are excellent, but the absence of resource primitives and sampling lowers the comprehensiveness slightly.
Has a LICENSE | ✅ (MIT) |
---|---|
Has at least one tool | ✅ |
Number of Forks | 4 |
Number of Stars | 6 |
Our Opinion:
MCP-DBLP is a robust and specialized MCP server, particularly well-suited for academic and bibliographic workflows. Its toolset is comprehensive for DBLP integration and citation management, but the lack of explicit resource and sampling support means it may not fully utilize all MCP features yet. Usability and setup are well-documented.
Overall Score: 7.5/10
MCP-DBLP is a Model Context Protocol server that connects Large Language Models to the DBLP computer science bibliography. It enables advanced academic literature search, citation management, BibTeX export, and bibliographic data extraction directly within your AI workflows.
MCP-DBLP offers tools for searching DBLP publications (including fuzzy title and boolean queries), retrieving author publications, exploring venues, exporting BibTeX entries, and performing publication statistics and analysis.
Use the 'export_bibtex' tool to generate and export accurate BibTeX references directly from DBLP, bypassing LLM processing for citation accuracy.
Yes! Add the MCP component to your FlowHunt flow, configure it with your MCP-DBLP server details, and your AI agent will have full access to all bibliographic search and citation tools provided by MCP-DBLP.
Generally, MCP-DBLP does not require API keys for public DBLP access. If you need to provide credentials or secrets, use environment variables for secure configuration as shown in the documentation.
MCP-DBLP is ideal for academic paper search and review, citation management, author and venue analytics, bibliographic data extraction, and publication trend analysis—all within LLM or agent-based environments.
Supercharge your AI agents with seamless access to the DBLP computer science bibliography. Search, analyze, and export citations directly from FlowHunt or your favorite MCP-compatible app.
DocsMCP is a Model Context Protocol (MCP) server that empowers Large Language Models (LLMs) with real-time access to both local and remote documentation sources...
The ModelContextProtocol (MCP) Server acts as a bridge between AI agents and external data sources, APIs, and services, enabling FlowHunt users to build context...
The arxiv-latex MCP Server enables AI tools to directly access and process arXiv papers via their LaTeX source files, allowing for precise mathematical interpre...