@monnet/mcp
Model Context Protocol (MCP) server for Monnet. Exposes motions, plans, and approvals to MCP-compatible clients so you can work with your Monnet workspace from your terminal without leaving your AI assistant.
README
@monnet/mcp
Model Context Protocol (MCP) server for Monnet.
Exposes motions, plans, and approvals to MCP-compatible clients (Claude Desktop, Cursor, etc.) so you can work with your Monnet workspace from your terminal without leaving your AI assistant.
Install
Add this to your MCP client config (e.g. ~/Library/Application Support/Claude/claude_desktop_config.json for Claude Desktop):
{
"mcpServers": {
"monnet": {
"command": "npx",
"args": ["-y", "@monnet/mcp"],
"env": {
"MONNET_API_KEY": "mnk_..."
}
}
}
}
Generate an API key at https://app.monnet.ai/settings (API Keys tab).
Environment variables
| Variable | Required | Default | Purpose |
|---|---|---|---|
MONNET_API_KEY |
yes | — | API key (mnk_*), sent as the X-API-Key header on every request |
MONNET_API_URL |
no | https://api.monnet.ai |
Override for self-hosted or local dev backends |
Tools
| Tool | Purpose |
|---|---|
monnet_whoami |
Verify the connection and list the API keys on your account |
list_workspaces |
List the workspaces you belong to |
get_inbox |
Fetch your inbox |
list_motions |
List motions in a workspace |
get_motion |
Read a motion — summary, body, plan, members, comments |
create_motion |
Create a new draft motion from a free-form prompt |
update_motion |
Update a motion's summary, body, priority, or plan |
comment |
Post a comment on a motion (approval-gated, see below) |
approve |
Approve a plan step |
reject |
Reject a plan step (with an optional reason) |
ask_monnet |
Ask Monnet a question on a motion |
Approval gate on send actions
Tools that send a message under your identity (e.g. comment) never dispatch automatically. Before the message leaves the MCP server, your client shows a confirmation dialog (MCP elicitation) with a preview; nothing is sent unless you explicitly approve. If your MCP client does not support elicitation, the send is aborted — the gate fails closed.
Local development
npm install
npm run build
Point your MCP client at the local build:
{
"mcpServers": {
"monnet": {
"command": "node",
"args": ["/absolute/path/to/monnet-mcp/dist/index.js"],
"env": {
"MONNET_API_KEY": "mnk_...",
"MONNET_API_URL": "http://localhost:8000"
}
}
}
}
Restart your MCP client after editing the config.
License
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.