Beep MCP Server
Enables AI assistants to interact with the Beep platform to manage bounties, assets, and payments. It supports operations for starting and stopping streaming sessions, verifying transactions, and issuing payments on the Beep network.
README
Beep MCP Server
This is a Model Context Protocol (MCP) server that provides tools for interacting with the Beep platform. It allows AI assistants (like Claude) to perform actions such as creating bounties, managing streams, issuing payments, and verifying transactions on the Beep network.
Features
This server exports the following MCP tools:
checkBeepApi: Verify connectivity to the Beep API.createBounty: Create a new bounty.requestAndPurchaseAsset: Request and purchase an asset.issuePayment: Issue a payment.startStreaming: Start a streaming session.stopStreaming: Stop a streaming session.pauseStreaming: Pause a streaming session.verifyTransaction: Verify a transaction.
Prerequisites
- Node.js (v18 or higher recommended)
- A Beep API Key
Installation
-
Clone the repository:
git clone <repository-url> cd beep-mcp-server -
Install dependencies:
npm install
Configuration
-
Create a
.envfile in the root directory:cp .env.example .env(Note: If
.env.exampledoesn't exist, create a.envfile manually) -
Add your Beep API Key and other configuration to
.env:BEEP_API_KEY=your_beep_api_key_here # Optional: Override Beep Server URL # BEEP_URL=https://api.beep.it # Communication mode (stdio is default for local MCP) COMMUNICATION_MODE=stdio
Building
Compile the TypeScript code to JavaScript:
npm run build
The build output will be in the dist/ directory.
Usage with Claude Desktop
To use this MCP server with Claude Desktop, add the following configuration to your claude_desktop_config.json (usually located at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"beep-mcp-server": {
"command": "node",
"args": [
"/absolute/path/to/beep-mcp-server/dist/mcp-server.js"
],
"env": {
"BEEP_API_KEY": "your_beep_api_key_here",
"COMMUNICATION_MODE": "stdio"
}
}
}
}
Important: Replace /absolute/path/to/beep-mcp-server with the actual full path to this directory on your machine.
Development
To run the server in stdio mode (default):
npm start
For development, you can use npm run build to rebuild after changes.
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.