MCP server exposing the full Manus API v2 surface to Claude Code
Most developer tooling work still happens through a UI a human drives. Manus MCP server moves it into the conversation instead. MCP server exposing the full Manus API v2 surface to Claude Code.
An MCP server that gives Claude Code full programmatic control over Manus.im through the official Manus API v2. Implements all 30 documented endpoints, 3 composite tools for common workflows, and a local webhook receiver with RSA-SHA256 signature verification.
The server publishes 4 tools. What each one is for:
manus_webhook_events_list — list received events with filtersmanus_webhook_events_get — fetch an event by event_idmanus_webhook_events_clear — delete received eventsCategory — ToolsInstallation goes through your MCP client rather than a global install: point it at manus-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Configuration is passed through the environment: MANUS_API_KEY, MANUS_BASE_URL, MANUS_WEBHOOK_PUBLIC_URL, MANUS_WEBHOOK_HOST, MANUS_WEBHOOK_DB_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Manus's toolset — manus_webhook_events_list, manus_webhook_events_get, manus_webhook_events_clear and 1 more — is a fair guide to whether it matches your workflow. It is maintained by Manus MCP Contributors; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Manus's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| manus_webhook_events_list | list received events with filters. |
| manus_webhook_events_get | fetch an event by event_id. |
| manus_webhook_events_clear | delete received events. |
| Category | Tools |
{
"mcpServers": {
"manus-1": {
"command": "uvx",
"args": ["manus-mcp"],
"env": {
"MANUS_API_KEY": "your-value",
"MANUS_BASE_URL": "your-value",
"MANUS_WEBHOOK_PUBLIC_URL": "your-value",
"MANUS_WEBHOOK_HOST": "your-value",
"MANUS_WEBHOOK_DB_PATH": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| MANUS_API_KEY | Credential the server authenticates with. | Yes |
| MANUS_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| MANUS_WEBHOOK_PUBLIC_URL | Endpoint or connection string the server talks to. | Yes |
| MANUS_WEBHOOK_HOST | Endpoint or connection string the server talks to. | Optional |
| MANUS_WEBHOOK_DB_PATH | Filesystem location the server is allowed to use. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.