Skip to main content
ClaudeWave

Monnet's MCP

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/GregoireCasoetto/monnet-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "monnet-mcp": {
      "command": "node",
      "args": ["/path/to/monnet-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/GregoireCasoetto/monnet-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# @monnet/mcp

Model Context Protocol (MCP) server for [Monnet](https://monnet.ai).

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):

```json
{
  "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

```bash
npm install
npm run build
```

Point your MCP client at the local build:

```json
{
  "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](./LICENSE)

What people ask about monnet-mcp

What is GregoireCasoetto/monnet-mcp?

+

GregoireCasoetto/monnet-mcp is mcp servers for the Claude AI ecosystem. Monnet's MCP It has 0 GitHub stars and was last updated today.

How do I install monnet-mcp?

+

You can install monnet-mcp by cloning the repository (https://github.com/GregoireCasoetto/monnet-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is GregoireCasoetto/monnet-mcp safe to use?

+

GregoireCasoetto/monnet-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains GregoireCasoetto/monnet-mcp?

+

GregoireCasoetto/monnet-mcp is maintained by GregoireCasoetto. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to monnet-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy monnet-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: GregoireCasoetto/monnet-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/gregoirecasoetto-monnet-mcp)](https://claudewave.com/repo/gregoirecasoetto-monnet-mcp)
<a href="https://claudewave.com/repo/gregoirecasoetto-monnet-mcp"><img src="https://claudewave.com/api/badge/gregoirecasoetto-monnet-mcp" alt="Featured on ClaudeWave: GregoireCasoetto/monnet-mcp" width="320" height="64" /></a>

More MCP Servers

monnet-mcp alternatives