Navigation
Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol - MCP Implementation

Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol

Beyond MCP Server: Extensible by design, powering next-gen AI apps with seamless scalability. Tailored for developers & enterprises to unleash limitless potential. MCP protocol redefined.

Research And Data
4.5(133 reviews)
199 saves
93 comments

Ranked in the top 7% of all AI tools in its category

About Beyond MCP Server

What is Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol?

Beyond MCP Server is an advanced infrastructure designed to empower AI applications with modular and scalable capabilities. Built on a redefined MCP protocol, it offers dual operation modes (stdio and HTTP) to interface with AI models, ensuring flexibility and performance. The server integrates Farcaster network via Neynar API, providing access to decentralized social graph data, and supports extensible provider modules for additional platforms. Its architecture emphasizes robustness, enabling seamless integration of real-time data analysis and content retrieval.

How to use Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol?

To deploy the server, developers must first configure environment variables and install dependencies via npm. Initialization requires selecting operation mode (stdio/HTTP) and specifying provider configurations. Users interact through REST endpoints or stdio streams to execute tasks like fetching user profiles, analyzing trending content, or querying wallet-based user data. Step-by-step guides and API documentation ensure straightforward implementation into AI workflows.

Beyond MCP Server Features

Key Features of Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol?

  • Multi-Protocol Support: Operates in both stdio and HTTP modes for versatile deployment scenarios.
  • Farcaster Integration: Leverages Neynar API to access Farcaster's decentralized social data for user activity analysis and wallet-based profile lookups.
  • Modular Architecture: Extensible provider system allows adding support for new platforms via interface-compliant modules.
  • Advanced Analytics: Built-in tools for thread analysis, trending topic exploration, and multi-channel comparisons.
  • Security & Compliance: Enforces rate limiting, input validation, and secure API key management.

Use cases of Beyond MCP Server: Scalable AI Infrastructure, Redefined MCP Protocol?

Businesses utilize this infrastructure for:

  • Social Media Analysis: Real-time sentiment analysis and trend detection across Farcaster networks.
  • Decentralized Identity Verification: Cross-referencing wallet addresses with user profiles for fraud prevention.
  • AI-Powered Customer Support: Generating context-aware responses using historical thread data.
  • Market Research: Tracking user engagement patterns and content virality metrics.

Beyond MCP Server FAQ

FAQ: Beyond MCP Server Implementation & Configuration

Q: How do I add support for new platforms?

A: Create a new provider module adhering to the ContentProvider interface, implementing data fetching and normalization logic.

Q: What security measures are included?

A: Built-in rate limiting, input sanitization, and API key encryption protect against misuse and data breaches.

Q: Does it support high-volume requests?

A: The cluster-ready HTTP mode and asynchronous processing ensure scalability for enterprise-level traffic.

Q: Where can I find compliance documentation?

A: Detailed GDPR/CCPA compliance guides are available in the official repository.

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

Installation

  1. Clone the repository
git clone https://github.com/yourusername/beyond-mcp-server.git
cd beyond-mcp-server
  1. Install dependencies
npm install
  1. Create a .env file from the template
cp .env.example .env
# Edit .env with your API keys
  1. Configure your environment variables
* **Required** : Set `NEYNAR_API_KEY` in your .env file
* You can obtain a Neynar API key from <https://neynar.com/>
* Without a valid API key, Farcaster functionality will not work
  1. 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

  1. Build the server
npm run build
  1. 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
  1. 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"
    ]
    }
    }
    }

  1. 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"
      }
    }
  }
}
  1. Restart Claude for Desktop

MCP Capabilities

Resources

  • social://{platform}/{query}/search - Search content on a platform
  • social://{platform}/user/{userId}/profile - Get user profile
  • social://{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 address
  • social://{platform}/user/{userId}/content - Get user content
  • social://{platform}/thread/{threadId} - Get conversation thread
  • social://{platform}/trending - Get trending topics
  • social://{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 platform
  • get-user-profile - Get a user's profile information
  • get-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 user
  • get-thread - Get a conversation thread
  • get-trending-topics - Get current trending topics
  • getTrendingFeed - Get trending feed with multi-provider support (Farcaster only)
  • get-wallet-profile - Get profile based on wallet address
  • search-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 thread
  • summarize-user-activity - Summarize a user's activity
  • explore-trending-topics - Explore trending topics on a platform
  • analyze-search-results - Analyze search results for a query
  • explore-trending-feed - Analyze trending feed content across different providers
  • get-wallet-profile - Get and analyze user profile by wallet address
  • check-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:

  1. Create a new directory in src/providers/
  2. Implement the ContentProvider interface
  3. 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

Related MCP Servers & Clients