ETHID MCP Server
Provides comprehensive access to the Ethereum Follow Protocol (EFP) API, enabling social graph queries, follower/following management, ENS resolution, and profile data retrieval for Ethereum addresses and ENS names.
README
ETHID MCP Server
An MCP (Model Context Protocol) server that provides comprehensive access to the Ethereum Follow Protocol (EFP) API, enabling social graph queries for Ethereum addresses and ENS names.
Features
Core Tools (22 Total)
- Basic Operations:
getFollowerCount,getFollowers,getFollowing,checkFollowing,checkFollower - Profile Data:
fetchAccount,fetchProfileStats,fetchProfileLists,fetchProfileBadges,fetchProfileQRCode - Advanced Queries:
fetchProfileFollowing,fetchProfileFollowerswith pagination and filtering - Tag Management:
fetchFollowingTags,fetchFollowerTags(limited availability) - Social Features:
fetchFollowState,fetchNotifications,fetchRecommendations,fetchLeaderboard - List Operations:
fetchListState,fetchListsForUser,fetchPoapLink - ENS Resolution:
fetchBulkAccounts- Bulk reverse resolution of addresses to ENS names - Help & Guidance:
searchContexts,getBestPractices,getUsagePattern,getToolGuidance,getEfficiencyTips
Key Capabilities
- Tag Filtering: Filter followers/following by tags (e.g., "top8", "friend", "family")
- ENS Resolution: Automatic resolution of ENS names to addresses
- Bulk ENS Reverse Resolution: Convert multiple addresses to ENS names efficiently
- Pagination Support: Handle large datasets efficiently
- Search Functionality: Search within followers/following lists
- Real-time Data: Option to fetch fresh data bypassing cache
Setup
For Developers
{
"mcpServers": {
"ethid-mcp": {
"command": "npx",
"args": ["mcp-remote", "https://ethid-mcp.efp.workers.dev/sse"]
}
}
}
Usage
š IMPORTANT: Before using the ETHID MCP server, run the initialization prompt from ETHID_MCP_INITIALIZATION_PROMPT.md to ensure optimal performance and proper tool usage.
See USAGE_GUIDE.md for comprehensive examples and best practices.
Quick Examples
// Get follower count
await getFollowerCount({ addressOrName: 'vitalik.eth' });
// Result: "vitalik.eth has 4811 followers and is following 10 accounts."
// Check who someone follows with tags
await getFollowing({
addressOrName: 'efp.encrypteddegen.eth',
tags: ['top8'],
});
// Result: List of top 8 friends with their addresses and tags
// Convert addresses to ENS names
await fetchBulkAccounts({
addresses: ['0xd8da6bf26964af9d7eed9e03e53415d37aa96045', '0x849151d7d0bf1f34b70d5cad5149d28cc2308bf1'],
});
// Result: ["vitalik.eth", "jesse.xyz"]
// Get profile information
await fetchAccount({ addressOrName: 'brantly.eth' });
// Result: Complete profile with ENS records, avatar, social links
Project Structure
ethid-mcp/
āāā src/
ā āāā index.ts # Main MCP agent implementation
ā āāā tools/ # Modular tool definitions
ā ā āāā index.ts # Tool registration coordinator
ā ā āāā profile.ts # Profile and following/followers tools
ā ā āāā account.ts # Account data and ENS resolution tools
ā ā āāā relationships.ts # Relationship checking tools
ā ā āāā tags.ts # Tag management tools
ā ā āāā discovery.ts # Discovery and recommendation tools
ā ā āāā lists.ts # List management tools
ā ā āāā context.ts # Documentation context search
ā ā āāā guidance.ts # Best practices and guidance tools
ā āāā types/ # TypeScript types
ā ā āāā api.ts # API response types
ā ā āāā env.ts # Environment configuration types
ā āāā contexts/ # Documentation contexts
ā āāā utils/ # Utility functions
āāā wrangler.json # Cloudflare Worker config
āāā USAGE_GUIDE.md # Comprehensive usage guide
āāā ETHID_MCP_INITIALIZATION_PROMPT.md # Initialization guide
Architecture
The ETHID MCP server operates as a Cloudflare Worker that:
- Receives MCP requests via the local proxy server
- Calls the EFP API at
https://api.ethfollow.xyz/api/v1 - Returns formatted responses optimized for AI consumption
Key Components
- Cloudflare Worker: Main API integration and business logic
- Local MCP Server: Proxy for Claude Desktop integration
- Node.js Wrapper: Compatibility layer for Node.js v22.12.0+
Contributing
The project is actively maintained and welcomes contributions. The current deployment is fully functional with all tools working correctly.
License
See LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.