An MCP server serving as a structured knowledge base of crypto whitepapers for AI agents to access, analyze, and learn from. - Search Whitepapers: Use DuckDuckGo to find whitepaper PDFs for cryptocurrency projects. - Load Whitepapers: Download and index whitepaper PDFs into the knowledge base. - Query Knowledge Base: Query whitepaper content with optional project filtering. - List Projects: View a
Add this skill
npx mdskills install kukapay/crypto-whitepapers-mcpProvides useful crypto whitepaper search and knowledge base tools with clear setup instructions
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.
Install via CLI
npx mdskills install kukapay/crypto-whitepapers-mcpCrypto Whitepapers MCP Server is a free, open-source AI agent skill. An MCP server serving as a structured knowledge base of crypto whitepapers for AI agents to access, analyze, and learn from. - Search Whitepapers: Use DuckDuckGo to find whitepaper PDFs for cryptocurrency projects. - Load Whitepapers: Download and index whitepaper PDFs into the knowledge base. - Query Knowledge Base: Query whitepaper content with optional project filtering. - List Projects: View a
Install Crypto Whitepapers MCP Server with a single command:
npx mdskills install kukapay/crypto-whitepapers-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Crypto Whitepapers MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.