An MCP server serving as a structured knowledge base of crypto whitepapers.
An MCP server serving as a structured knowledge base of crypto whitepapers for AI agents to access, analyze, and learn from.
Clone the Repository:
git clone https://github.com/kukapay/crypto-whitepapers-mcp.git
cd crypto-whitepapers-mcp
Install Dependencies with uv:
uv sync
Integrate with Claude Desktop (Optional):
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"crypto-whitepapers": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/crypto-whitepapers-mcp"
"run",
"crypto-whitepapers-mcp"
]
}
}
}
Replace /absolute/path/to/crypto-whitepapers-mcp
with the absolute path to the repository.The following tools are available via the MCP server:
list_available_projects()
: Lists all projects in the knowledge base (derived from PDF filenames).
list_available_projects()
search_whitepaper(project_name: str)
: Searches for a project's whitepaper PDF using DuckDuckGo.
search_whitepaper("bitcoin")
load_whitepaper(project_name: str, url: str)
: Downloads a whitepaper PDF from a URL and loads it into the knowledge base.
load_whitepaper("bitcoin", "https://bitcoin.org/bitcoin.pdf")
ask_whitepapers(query: str, project_name: str = None)
: Searches the knowledge base for a query, optionally filtered by project.
ask_whitepapers("blockchain technology", "bitcoin")
analyze_tokenomics(project_name: str)
: Analyzes tokenomics (distribution, supply, incentives) in a project's whitepaper using the ask_whitepapers
tool.
List all available projects.
Search for the Bitcoin whitepaper PDF.
Load the Bitcoin whitepaper from https://bitcoin.org/bitcoin.pdf.
Ask the knowledge base about blockchain technology in the Bitcoin whitepaper.
This project is licensed under the MIT License. See the LICENSE file for details.