diff --git a/README.md b/README.md index 5cc7a7b..db55c09 100644 --- a/README.md +++ b/README.md @@ -673,6 +673,7 @@ Seven curated Model Context Protocol server configurations. | Kubernetes | [`kubernetes.json`](mcp-configs/kubernetes.json) | kubectl-mcp-server, Docker, GitHub | | Data Science | [`data-science.json`](mcp-configs/data-science.json) | Jupyter, SQLite, PostgreSQL, Filesystem | | Frontend | [`frontend.json`](mcp-configs/frontend.json) | Puppeteer, Figma, Storybook | +| Crypto / DeFi | [`crypto-defi.json`](mcp-configs/crypto-defi.json) | defi-mcp, Filesystem, Fetch, Memory | | DevOps | [`devops.json`](mcp-configs/devops.json) | AWS, Docker, GitHub, Terraform, Sentry | | Research | [`research.json`](mcp-configs/research.json) | BGPT scientific papers, Brave Search, Fetch, Memory, Filesystem | diff --git a/mcp-configs/crypto-defi.json b/mcp-configs/crypto-defi.json new file mode 100644 index 0000000..ff499a6 --- /dev/null +++ b/mcp-configs/crypto-defi.json @@ -0,0 +1,24 @@ +{ + "mcpServers": { + "defi-mcp": { + "command": "npx", + "args": ["defi-mcp"], + "description": "DeFi and crypto data — token prices, gas fees, swap quotes, wallet balances, and trending tokens across 9 chains." + }, + "filesystem": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-filesystem", ""], + "description": "Read and write strategy files, portfolio configs, and analysis outputs." + }, + "fetch": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-fetch"], + "description": "Fetch blockchain explorer data, protocol documentation, and governance proposals." + }, + "memory": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-memory"], + "description": "Track portfolio positions, price alerts, and research findings across sessions." + } + } +}