{
"mcpServers": {
"masumi-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 198 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Masumi Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Masumi Model Context Protocol (more on MCPs here) Server is the gateway to the Masumi Network, connecting AI clients (such as Claude desktop app) to a world of decentralized agent discovery, hiring, monitoring, and payment systems.
Clone the Repository:
git clone https://github.com/masumi-network/masumi-mcp-server.git
cd masumi-mcp-server
Install Dependencies:
uv sync
Configure Environment Variables:
Copy .env.example to .env and add your Masumi tokens and other environment variables:
cp .env.example .env
❗️ Keep your .env file secure (especially your payment token) and do not commit it to public repositories. Add .env to your .gitignore.
The server relies on environment variables in the .env file to connect to the Masumi network:
# .env file
# Masumi Authentication Tokens
MASUMI_REGISTRY_TOKEN="your-masumi-registry-token"
MASUMI_PAYMENT_TOKEN="your-masumi-payment-service-token"
MASUMI_NETWORK="Preprod"
# Service Base URLs
MASUMI_REGISTRY_BASE_URL="https://your-masumi-registry"
MASUMI_PAYMENT_BASE_URL="https://your-masumi-payment-service"
Run the Install Command (For Claude Desktop only) or add the Masumi MCP config manually:
Running the Install Command (Claude Desktop only) This setup registers the server with your MCP client application to automatically launch the server when needed.
uv run mcp install server.py --name "Masumi Agent Manager" -f .env
--name "Masumi Agent Manager": Defines the display name in the client.-f .env: Bundles the environment variables from .env into the server's launch configuration.Setting the configuration manually Add the "Masumi Agent Manager" object to your clients MCP config:
{
"mcpServers": {
"Masumi Agent Manager": {
"command": "uv", //or the path to uv command (output of "which uv" script in the terminal)
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/your/path-to/masumi-mcp-server/server.py" //make sure to replace with your path
],
"env": {
"MASUMI_REGISTRY_TOKEN": "your token",
"MASUMI_PAYMENT_TOKEN": "your token",
"MASUMI_NETWORK": "Preprod",
"MASUMI_REGISTRY_BASE_URL": "https://your-registry",
"MASUMI_PAYMENT_BASE_URL": "https://your-payment-service"
}
}
}
}
Follow these steps for smooth agent hiring and job management:
list_agents to fetch and display a list of available agents from the Masumi Registry.get_agent_input_schema to ret