PluginBench
MCP Server
Active
MIT

Manager.io MCP MCP Server

io.github.flumpiey/manager-mcp

What is the Manager.io MCP MCP server?

MCP server for Manager.io bookkeeping: read-first with opt-in scoped task and write tools

How to install Manager.io MCP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • MANAGER_API_URL
    required

    Manager API base URL (include /api2 when required)

  • MANAGER_API_KEY
    required
    secret

    Access token from Manager Settings (sent as X-API-KEY)

  • MANAGER_MCP_WRITE_SCOPES

    Comma-separated write scopes: quotes,orders,parties,items,sales,purchases,banking,payroll,ledger,raw. Recommended: banking,sales,parties

  • MANAGER_MCP_DELETE_SCOPES

    Comma-separated delete scopes (never implied by write scopes)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "manager-mcp": {
      "command": "uvx",
      "args": [
        "manager-mcp"
      ],
      "env": {
        "MANAGER_API_URL": "<YOUR_MANAGER_API_URL>",
        "MANAGER_API_KEY": "<YOUR_MANAGER_API_KEY>",
        "MANAGER_MCP_WRITE_SCOPES": "<YOUR_MANAGER_MCP_WRITE_SCOPES>",
        "MANAGER_MCP_DELETE_SCOPES": "<YOUR_MANAGER_MCP_DELETE_SCOPES>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "manager-mcp": {
      "command": "uvx",
      "args": [
        "manager-mcp"
      ],
      "env": {
        "MANAGER_API_URL": "<YOUR_MANAGER_API_URL>",
        "MANAGER_API_KEY": "<YOUR_MANAGER_API_KEY>",
        "MANAGER_MCP_WRITE_SCOPES": "<YOUR_MANAGER_MCP_WRITE_SCOPES>",
        "MANAGER_MCP_DELETE_SCOPES": "<YOUR_MANAGER_MCP_DELETE_SCOPES>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "manager-mcp": {
      "command": "uvx",
      "args": [
        "manager-mcp"
      ],
      "env": {
        "MANAGER_API_URL": "<YOUR_MANAGER_API_URL>",
        "MANAGER_API_KEY": "<YOUR_MANAGER_API_KEY>",
        "MANAGER_MCP_WRITE_SCOPES": "<YOUR_MANAGER_MCP_WRITE_SCOPES>",
        "MANAGER_MCP_DELETE_SCOPES": "<YOUR_MANAGER_MCP_DELETE_SCOPES>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "manager-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "manager-mcp"
      ],
      "env": {
        "MANAGER_API_URL": "<YOUR_MANAGER_API_URL>",
        "MANAGER_API_KEY": "<YOUR_MANAGER_API_KEY>",
        "MANAGER_MCP_WRITE_SCOPES": "<YOUR_MANAGER_MCP_WRITE_SCOPES>",
        "MANAGER_MCP_DELETE_SCOPES": "<YOUR_MANAGER_MCP_DELETE_SCOPES>"
      }
    }
  }
}
Claude Code
claude mcp add manager-mcp --env MANAGER_API_URL=<YOUR_MANAGER_API_URL> --env MANAGER_API_KEY=<YOUR_MANAGER_API_KEY> --env MANAGER_MCP_WRITE_SCOPES=<YOUR_MANAGER_MCP_WRITE_SCOPES> --env MANAGER_MCP_DELETE_SCOPES=<YOUR_MANAGER_MCP_DELETE_SCOPES> -- uvx manager-mcp

Related MCP servers

Read-first Linkwarden bookmarks MCP with opt-in write, delete, and collection tools.

0
Python
MIT
View repository →