# π Quick Start: Integrating External MCP Servers
## One Command Integration
```bash
cd /workspaces/universal-crypto-mcp
pnpm run integrate:mcp-servers
```
This will automatically:
1. Clone 20 crypto MCP servers (ranks 20-40)
2. Rebrand them with your info (nirholas / nich / @nichxbt)
3. Add proper attribution
4. Integrate into monorepo structure
## What Gets Changed
### Your Information Applied
- **Author**: nirholas (nich)
- **Twitter**: x.com/nichxbt
- **GitHub**: github.com/nirholas
- **Email**: nich@nichxbt.com
### Files Modified
- `package.json` β Scoped to `@nirholas/`
- `README.md` β Header with your branding
- `LICENSE` β Copyright updated to 2026
- All source files β URLs and mentions updated
### Files Added
- `ATTRIBUTION.md` β Credit to original author
- `tsconfig.json` β Monorepo configuration
- Standard directories: `src/`, `dist/`, `test/`, `docs/`
## Server List (20 Servers)
1. **Solana & DeFi**
- solana-agent-kit
- jupiter-mcp, raydium-mcp, orca-mcp
- defillama-mcp, dune-analytics-mcp
2. **Analytics & Data**
- nansen-mcp, arkham-intelligence-mcp
- coingecko-enhanced-mcp
- crypto-price-oracle
3. **Blockchain Explorers**
- etherscan-advanced-mcp
- polygonscan-mcp, bscscan-mcp
- arbitrum-scan-mcp, optimism-scan-mcp, base-scan-mcp
4. **L1 Chains**
- avalanche-explorer-mcp
- cosmos-hub-mcp
- near-protocol-mcp
- aptos-mcp, sui-network-mcp
- polkadot-mcp, cardano-mcp
## After Integration
```bash
# Review
cd packages/integrations/external-mcp
ls -la
# Test a server
cd solana-agent-kit
pnpm install
pnpm build
# Commit
git add .
git commit -m "feat: integrate top 20-40 crypto MCP servers by @nichxbt"
git push
```
## Adding More Servers
Edit `scripts/top-crypto-mcp-servers.json`:
```json
{
"rank": 41,
"name": "new-mcp-server",
"repo": "author/repo-name",
"description": "Server description",
"license": "MIT",
"features": ["feature1", "feature2"]
}
```
Then run: `pnpm run integrate:mcp-servers`
---
**Made by**: nich (@nirholas) | [x.com/nichxbt](https://x.com/nichxbt) | [github.com/nirholas](https://github.com/nirholas)