npm @monnet/mcpstdioMITupdated 2mo ago
Model Context Protocol (MCP) server for Monnet.
monnet で何ができる?
@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
インストール
monnet をクライアントに追加します。お使いのものを選んでください。
claude mcp add mcp -- npx -y @monnet/mcpcodex mcp add mcp -- npx -y @monnet/mcpamp mcp add mcp -- npx -y @monnet/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@monnet/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@monnet/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@monnet/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @monnet/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 個のツール
monnet は接続したエージェントに 8 個のツールを提供します。
- 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
- ask_monnet
- Ask Monnet a question on a motion
スコア
75 / 100
良好
- ドキュメント22/25
- メンテナンス22/25
- 信頼性13/20
- 機能6/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 54 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.2.3最新 | 2026年6月22日 |
| 0.2.2 | 2026年6月16日 |
| 0.2.1 | 2026年6月16日 |