Loading...

An MCP server providing access to cryptocurrency whitepapers, enabling AI agents to search, load, and query information for analysis and learning.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
An MCP server providing access to cryptocurrency whitepapers, enabling AI agents to search, load, and query information for analysis and learning.
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.
Performance depends on the size of the knowledge base and the complexity of the queries. Indexing and search operations may become slow with a large number of whitepapers.
Cost is primarily related to the resources used to host the server and the potential cost of DuckDuckGo API usage (if any).
{
"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.
None
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.
The agent can load and query whitepapers. Exercise caution when allowing autonomous loading of content from arbitrary URLs.
Production Tip
Implement robust URL validation and content scanning for loaded whitepapers to prevent malicious content from entering the knowledge base.
Use the `load_whitepaper` tool, providing the project name and the URL of the whitepaper PDF.
The server will likely return an error message. Ensure the URL is correct and the PDF is accessible.
The server's ability to handle other languages depends on the underlying indexing and search capabilities. It may work, but results may vary.
You can use the `load_whitepaper` tool again with the same project name and the URL of the updated whitepaper. This will overwrite the existing version.
The server's capacity depends on the available storage space and the performance of the indexing and search algorithms. There is no explicit limit defined in the documentation.
The server's security depends on how it is configured and deployed. It is important to validate URLs, monitor for malicious content, and implement appropriate access controls.
No, the server does not appear to have any built-in authentication mechanisms.