Beyond MCP Server is an extensible Model Context Protocol server that provides standardized access to social platform data, including Farcaster (via Neynar API) with plans for additional platforms. It implements the MCP specification, allowing AI assistants to access and format social media content efficiently.
git clone https://github.com/yourusername/beyond-mcp-server.git
cd beyond-mcp-server
npm install
cp .env.example .env
# Edit .env with your API keys
Configure environment variables
NEYNAR_API_KEY
in your .env fileBuild and start the server
npm run build
npm start # For stdio mode (default)
# OR
npm run start:http # For HTTP/SSE mode
npm run build
Configure your .env file with API keys
Add the server to your Claude Desktop configuration:
For macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
For 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"
]
}
}
}
{
"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"
}
}
}
}
The server supports these MCP resource URLs:
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 balancesocial://{platform}/user/{userId}/content
- Get user contentsocial://{platform}/thread/{threadId}
- Get conversation threadsocial://{platform}/trending
- Get trending topicssocial://{platform}/trending-feed
- Get trending feed contentsocial://{platform}/channels/search
- Search for channelssocial://{platform}/channels/bulk-search
- Search for multiple channels in parallelThe server provides these MCP tools:
search-content
- Search for contentget-user-profile
- Get a user's profile informationget-user-profile-by-wallet
- Get user profile using wallet addressget-user-balance
- Get user's wallet balanceget-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 supportget-wallet-profile
- Get profile based on wallet addresssearch-channels
- Search for channelssearch-bulk-channels
- Search for multiple channels in parallelThe server includes these MCP prompts:
analyze-thread
- Analyze a social media threadsummarize-user-activity
- Summarize a user's activityexplore-trending-topics
- Explore trending topicsanalyze-search-results
- Analyze search resultsexplore-trending-feed
- Analyze trending feed contentget-wallet-profile
- Get and analyze user profile by wallet addresscheck-user-balance
- Analyze user's wallet balance and holdingsexplore-channels
- Analyze and explore channelsexplore-bulk-channels
- Analyze and compare multiple channelsCurrently, the server supports:
Additional platforms are planned to be added in future releases.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "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"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"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"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"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"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect