- Beyond MCP Server
Beyond MCP Server
Content
Beyond MCP Server
An extensible Model Context Protocol server that provides standardized access to social platform data and onchain data. Currently supports Farcaster (via Neynar API) with placeholder for Twitter integration. More platforms like Telegram including onchain data will be added soon.
Features
- MCP Compliant: Fully implements the Model Context Protocol specification
- Multi-Platform: Designed to support multiple social media platforms
- Extensible: Easy to add new platform providers
- Well-Formatted: Optimized context formatting for LLM consumption
- Flexible Transport: Supports both stdio and SSE/HTTP transports
Supported Platforms
- Farcaster: Full implementation via Neynar API
- Twitter: Placeholder (not implemented)
Getting Started
Prerequisites
- Node.js 16+
- Neynar API key (for Farcaster access) https://neynar.com/
Installation
- Clone the repository
git clone https://github.com/yourusername/beyond-mcp-server.git
cd beyond-mcp-server
- Install dependencies
npm install
- Create a .env file from the template
cp .env.example .env
# Edit .env with your API keys
-
Configure your environment variables
- Required: Set
NEYNAR_API_KEYin your .env file - You can obtain a Neynar API key from https://neynar.com/
- Without a valid API key, Farcaster functionality will not work
- Required: Set
-
Build and start the server
npm run build
npm start # For stdio mode (default)
# OR
npm run start:http # For HTTP/SSE mode
Using with Claude for Desktop
- Build the server
npm run build
-
Make sure your .env file is properly configured with your API keys
- The server will look for .env in the following locations:
- Current working directory
- Project root directory
- Parent directories (up to 3 levels)
- You can also set environment variables directly in your system
- The server will look for .env in the following locations:
-
Add the server to your Claude Desktop configuration at:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"beyond-social": {
"command": "/usr/local/bin/node",
"args": [
"/full/path/to/beyond-mcp-server/dist/index.js",
"--stdio"
]
}
}
}
- Alternatively, you can pass the API key and other environment variables directly in the Claude Desktop configuration (recommended):
{
"mcpServers": {
"beyond-social": {
"command": "/usr/local/bin/node",
"args": [
"/full/path/to/beyond-mcp-server/dist/index.js",
"--stdio"
],
"env": {
"NEYNAR_API_KEY": "YOUR_API_KEY_HERE",
"ENABLE_FARCASTER": "true",
"ENABLE_TWITTER": "false"
}
}
}
}
- Restart Claude for Desktop
MCP Capabilities
Resources
social://{platform}/{query}/search- Search content on a platformsocial://{platform}/user/{userId}/profile- Get user profilesocial://{platform}/wallet/{walletAddress}/profile- Get user profile by wallet address (Farcaster only)social://{platform}/user/{userId}/balance- Get user's wallet balance (Farcaster only)- Accepts either FID (numeric) or username
- If username is provided, automatically converts to FID before fetching balance
social://{platform}/wallet/{walletAddress}/profile- Get user profile by wallet addresssocial://{platform}/user/{userId}/content- Get user contentsocial://{platform}/thread/{threadId}- Get conversation threadsocial://{platform}/trending- Get trending topicssocial://{platform}/trending-feed- Get trending feed content with multi-provider support (Farcaster only)- Supports providers: neynar (default), openrank, mbd
- Parameters: timeWindow (1h, 6h, 12h, 24h, 7d, 30d), limit
social://{platform}/channels/search- Search for channels on a platform (Farcaster only)- Parameters: query, limit, cursor
- Returns channel details including name, description, follower count, and metadata
social://{platform}/channels/bulk-search- Search for multiple channels in parallel (Farcaster only)- Parameters: queries (array), limit, cursor
- Returns results for each query with channel details and pagination info
Tools
search-content- Search for content on a social platformget-user-profile- Get a user's profile informationget-user-profile-by-wallet- Get user profile using wallet address (Farcaster only)get-user-balance- Get user's wallet balance (Farcaster only)- Accepts either FID (numeric) or username
- Automatically handles username to FID conversion
get-user-content- Get content from a specific userget-thread- Get a conversation threadget-trending-topics- Get current trending topicsgetTrendingFeed- Get trending feed with multi-provider support (Farcaster only)get-wallet-profile- Get profile based on wallet addresssearch-channels- Search for channels on a platform (Farcaster only)- Parameters: query, limit, cursor
- Returns detailed channel information including follower count and metadata
search-bulk-channels- Search for multiple channels in parallel (Farcaster only)- Parameters: queries (array), limit, cursor
- Returns results for each query with channel details and pagination info
Prompts
analyze-thread- Analyze a social media threadsummarize-user-activity- Summarize a user's activityexplore-trending-topics- Explore trending topics on a platformanalyze-search-results- Analyze search results for a queryexplore-trending-feed- Analyze trending feed content across different providersget-wallet-profile- Get and analyze user profile by wallet addresscheck-user-balance- Analyze user's wallet balance and holdings- Works with both FID and username inputs
- Handles automatic FID resolution for usernames
explore-channels- Analyze and explore channels on a platform- Provides insights about channel popularity and content
- Helps discover relevant channels based on search criteria
explore-bulk-channels- Analyze and compare multiple channels in parallel- Efficiently searches and compares multiple channels
- Provides insights about channel relationships and trends
Extending with New Providers
To add a new social platform provider:
- Create a new directory in
src/providers/ - Implement the
ContentProviderinterface - Register the provider in the registry
Example:
import { ContentProvider } from '../interfaces/provider';
export class MyPlatformProvider implements ContentProvider {
public name = 'myplatform';
public platform = 'myplatform';
// Implement all required methods
}
Development
Running in Development Mode
npm run dev # stdio mode
npm run dev:http # HTTP mode
Testing
npm test
Linting
npm run lint
npm run lint:fix
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Changelog
All notable changes to this project will be documented in this file.
[1.0.0] - 2025-Mar-10
Added
- Initial release
- Farcaster integration via Neynar API
- MCP compliant server implementation
- Support for both stdio and HTTP modes
[1.0.1] - 2025-Mar-19
Added
- Added new tools and resource to fetch user profile with wallet address
- Added new tests
[1.0.2] - 2025-Mar-21
Added
- Added functionality to retrieve wallet balances of Farcaster users via ID or username
- Implemented multi-provider support for trending feed content
- Enhanced updateUserProfile with additional user details
- Added comprehensive tests to ensure reliability and performance
[1.0.3] - 2025-Mar-24
Added
- Add support to fetch Single and Bulk farcaster channel information
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Playwright McpPlaywright MCP server
Amap Maps高德地图官方 MCP Server
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题;
Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
DeepChatYour AI Partner on Desktop
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Serper MCP ServerA Serper MCP Server
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
CursorThe AI Code Editor
ChatWiseThe second fastest AI chatbot™
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Tavily Mcp
WindsurfThe new purpose-built IDE to harness magic