towow-mcp
v0.7.1
Published
Towow Agent Collaboration Protocol — MCP Server
Downloads
1,017
Maintainers
Readme
towow-mcp
Towow MCP Server for Node.js. Install from npm or npmmirror, then run the same MCP command as every other distribution route:
towow-mcpOfficial install decision page on the deployed Towow site:
/mcpSecondMe AI Consumer Lane
如果你要交付 PLAN-035 的 4 个 SecondMe 场景壳,不要把 Node README 里的通用 register/login 心智当成专线 happy path。
统一入口请使用:
SecondMe 专线固定 happy path:
预置 scene_id / auth_lane=secondme_ai / entry_surface
→ towow_auth_begin 或 protected tool 返回 AUTH_REQUIRED
→ SecondMe OAuth
→ towow_auth_status
→ towow_auth_exchange
→ towow_formulation_start / towow_discover / towow_agents ...Route Selection
| Scenario | Install command |
|----------|-----------------|
| Global default | npm install -g towow-mcp |
| Mainland China | npm install -g towow-mcp --registry=https://registry.npmmirror.com |
| Temporary run | npx -y towow-mcp |
| Temporary run in Mainland China | npx --registry=https://registry.npmmirror.com towow-mcp |
| Enterprise / offline | npm install -g ./towow-mcp-0.3.1.tgz |
Requirements
- Node.js
>= 18 - Verify with
towow-mcp --help
Client Config
Claude Code / Cursor
{
"mcpServers": {
"towow": {
"command": "towow-mcp",
"args": []
}
}
}npx Route
{
"mcpServers": {
"towow": {
"command": "npx",
"args": ["-y", "towow-mcp"]
}
}
}For Mainland China, set the npm registry to npmmirror first or add --registry=https://registry.npmmirror.com to the npx command.
Notes
- You do not need to start from the GitHub source repository if you only want to install the MCP server.
- Mainland China keeps the same package identity
towow-mcp; only the download registry changes. - Enterprise / offline delivery should ship a tarball together with a release manifest and checksums.
- Public docs still converge on one runtime contract: package name
towow-mcp, commandtowow-mcp, server idtowow. - Generic
towow_register/towow_loginremain available, but they are not the official happy path for the SecondMe lane.
Source Install
cd mcp-server-node
npm install
npm run build