Loading...
{
"mcpServers": {
"crypto-whitepapers": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/crypto-whitepapers-mcp"
"run",
"crypto-whitepapers-mcp"
]
}
}
}list_available_projects()Lists all cryptocurrency projects available in the knowledge base.
Read-only operation, no side effects.
search_whitepaper(project_name: str)Searches for a project's whitepaper PDF using DuckDuckGo.
Read-only operation, retrieves search results.
load_whitepaper(project_name: str, url: str)Downloads a whitepaper PDF from a URL and adds it to the knowledge base.
Downloads content from the internet and adds it to the knowledge base. Requires careful URL validation.
ask_whitepapers(query: str, project_name: str = None)Searches the knowledge base for a query, optionally filtered by project.
Read-only operation, queries the indexed content.
The server is relatively safe for querying and analyzing existing whitepapers. The primary risk lies in the `load_whitepaper` tool, which could introduce malicious content if not carefully monitored. It's crucial to validate URLs and project names to mitigate potential risks.