Back to Browse

Monnet MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Model Context Protocol server for Monnet — motions, plans, and approvals for MCP-compatible clients.

About

Model Context Protocol server for Monnet — motions, plans, and approvals for MCP-compatible clients.

Security Report

5.2
Moderate5.2Moderate Risk

Well-structured MCP server with proper authentication, reasonable input validation, and appropriate security controls including approval gating for sensitive operations. API key authentication is correctly handled through environment variables, and the approval mechanism ensures user consent before sending messages on their behalf. Minor code quality observations present but do not materially impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

7 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

process_spawn

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your Monnet API key (mnk_...). Generate one at https://app.monnet.ai/settings (API Keys tab).Required

Environment variable: MONNET_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "ai-monnet-mcp": {
      "env": {
        "MONNET_API_KEY": "your-monnet-api-key-here"
      },
      "args": [
        "-y",
        "@monnet/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub 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

VariableRequiredDefaultPurpose
MONNET_API_KEYyesAPI key (mnk_*), sent as the X-API-Key header on every request
MONNET_API_URLnohttps://api.monnet.aiOverride for self-hosted or local dev backends

Tools

ToolPurpose
monnet_whoamiVerify the connection and list the API keys on your account
list_workspacesList the workspaces you belong to
get_inboxFetch your inbox
list_motionsList motions in a workspace
get_motionRead a motion — summary, body, plan, members, comments
create_motionCreate a new draft motion from a free-form prompt
update_motionUpdate a motion's summary, body, priority, or plan
commentPost a comment on a motion (approval-gated, see below)
approveApprove a plan step
rejectReject a plan step (with an optional reason)
ask_monnetAsk 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

MIT

Reviews

No reviews yet

Be the first to review this server!