Netmind Web3 MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Netmind Web3 MCP Serverget the current market data and a news summary for Ethereum"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Netmind Web3 MCP Server
This is an MCP (Model Context Protocol) server that provides Web3 tools.
Components
Tools
Backend Tools:
query_token_addressList- Query token addresses by name or address (supports multiple values)query_reply_by_news_summary- Query news by Web3 entity name
CoinGecko Tools:
query_coingecko_market_data- Market data with 7-day historical chartsquery_coingecko_top_token_traders- Top token traders analysis (requires Analyst plan)query_coingecko_pool_trades- Past 24h trades by pool addressquery_coingecko_token_trades- Past 24h trades by token address (requires paid plan)
Sugar DeFi Tools:
Token queries, price data, pool information, and swap quotes (8 tools)
Environment Variables
All environment variables should be configured in the .env file in the project root.
Required:
BACKEND_BASE_URL: The backend base URL (domain only, route path is appended in code).BACKEND_AERO_URL: The Aero API base URL (domain only, route path is appended in code).COINGECKO_API_KEY: CoinGecko Pro API Key (format: CG-xxxxx).SUGAR_PK: Private key for the Sugar service (required for Sugar tools).SUGAR_RPC_URI_8453: RPC URI for Base chain (required for Sugar tools).
Optional:
MCP_TRANSPORT: Transport mode - "stdio" or "sse" (default: sse).MCP_HOST: Server host for SSE transport (default: 127.0.0.1).MCP_PORT: Server port for SSE transport (default: 8000).MCP_AUTH_TOKEN: Shared bearer token for SSE/Streamable HTTP authentication.
See env.example for all available configuration options.
Related MCP server: Web3 Research MCP
Quick Start
Setup environment:
source .venv/bin/activate pip install -e . # or: uv pip install -e . cp env.example .env # Edit .env with your API keysStart server:
python -m netmind_web3_mcp.serverServer starts in SSE mode on
http://127.0.0.1:8000by default.
Usage
Basic usage:
# Start with SSE transport (default: 127.0.0.1:8000)
python -m netmind_web3_mcp.server
# Start with SSE transport on custom host and port
MCP_HOST=0.0.0.0 MCP_PORT=9000 python -m netmind_web3_mcp.server
# Start with stdio transport
MCP_TRANSPORT=stdio python -m netmind_web3_mcp.serverMCP Client Configuration
For stdio transport (local development):
{
"mcpServers": {
"netmind-web3-mcp": {
"env": {
"BACKEND_BASE_URL": "***",
"BACKEND_AERO_URL": "***",
"COINGECKO_API_KEY": "***",
"MCP_TRANSPORT": "stdio"
},
"command": "uvx",
"args": [
"git+https://github.com/protagolabs/netmind-web3-mcp.git"
]
}
}
}For SSE transport (remote connections), connect to the SSE endpoint:
Default:
http://127.0.0.1:8000/sseCustom:
http://your-host:your-port/sse
Token Authentication (SSE/Streamable HTTP)
If the server sets MCP_AUTH_TOKEN, clients must send an Authorization header:
Authorization: Bearer <token>Notes:
stdio transport does not support HTTP headers, so token auth only applies to SSE/Streamable HTTP.
For the included
test/test_sse.py, setMCP_CLIENT_AUTH_TOKEN(or reuseMCP_AUTH_TOKEN).To generate a short random token, run
python test/generate_token.pyand copy the output.
Debugging with MCP Inspector
Access the built-in Inspector at http://127.0.0.1:8000/inspector after starting the server.
Alternative: Use mcp dev test/test_mcp_inspector.py (automatically starts server in background).
Testing
python test/test_local_stdio.py # stdio transport
python test/test_sse.py # SSE transportSee test/README.md for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables interaction with DeFi trading and portfolio analytics through Odos DEX aggregation and Zerion APIs. Provides access to swap quotes, liquidity operations, token pricing, portfolio analysis, and transaction history across multiple blockchain networks.4
- AlicenseDqualityDmaintenanceEnables deep research into cryptocurrency tokens by gathering data from multiple sources like CoinGecko and DeFiLlama to generate structured reports. It allows users to track research progress, fetch web content, and manage resources locally for comprehensive crypto analysis.92584Apache 2.0
- FlicenseBqualityDmaintenanceEnables AI agents to interact with multiple blockchain networks to check wallet balances, gas prices, and transaction history on the Frax network. It also includes tools for real-time cryptocurrency conversion and sending automated notifications via Telegram.9
- AlicenseAqualityCmaintenanceDescription: EVM blockchain intelligence toolkit for AI agents. 20 tools for token prices, gas comparison, swap quotes, yield rates, honeypot detection, and transaction simulation across 5 EVM chains. Zero config, no API keys required.26403MIT
Related MCP Connectors
500+ pay-per-call tools + skill packs. USDC + USDG on 12 chains, or free via proof-of-work.
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Crypto market data for AI agents via x402. 16 tools: prices, funding, DeFi yields, arbitrage, TA.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/protagolabs/netmind-web3-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server