Merge pull request #23 from Robocular/add-defi-mcp-config

Add Crypto/DeFi MCP config
This commit is contained in:
Rohit Ghumare
2026-03-16 13:30:42 +05:30
committed by GitHub
2 changed files with 25 additions and 0 deletions

View File

@@ -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 |

View File

@@ -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", "<ABSOLUTE_PATH_TO_CRYPTO_PROJECT>"],
"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."
}
}
}