Description

Beyond MCP Server provides standardized access to social platform data, currently supporting Farcaster (via Neynar API) with placeholders for Twitter and Telegram integration. It implements a flexible architecture with both stdio and HTTP/SSE transports, making it compatible with Claude Desktop. The server exposes resources and tools for searching content, retrieving user profiles, analyzing threads, and exploring trending topics across platforms. Built with extensibility in mind, it allows easy addition of new platform providers and is particularly valuable for AI assistants that need to incorporate social media context into conversations.

Installation

git clone https://github.com/beyond-network-ai/beyond-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "beyond-social-farcaster": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}