@koreai/arch-mcp-tools and configure your AI assistant.
Prerequisites
- Node.js 18 or later — We recommend LTS version. The server starts using
npxcommand. - Acess to Agent Platform account. When you connect for the first time, you must authenticate.
- MCP-compatible client.
Install and configure
The server (@koreai/arch-mcp-tools) is a standard stdio MCP server. The clients launch it using the command: npx -y @koreai/arch-mcp-tools. In your client’s config, you add it as a server named: arch-agent-platform.
The unpinned form follows the npm latest tag; use @koreai/arch-mcp-tools@1.5.0 for a reproducible install. By default, no environment is set. See Choose an environment to pin one.
Provide the environment URL in one of the following ways:
- In the configuration file, add as value of
AGENTS_URLparameter in theenv. For environment, see the list of region-specific platform URLs. - Pass
serverUrltoplatform_connect. - On the first use, the tool asks you for the environment.
Claude Code
Claude Code
.mcp.json (project) or ~/.claude.json (global):Codex CLI
Codex CLI
~/.codex/config.toml. Note that this file is TOML, not JSON:Cursor
Cursor
Add to
.cursor/mcp.json (project) or ~/.cursor/mcp.json (global):VS Code (GitHub Copilot)
VS Code (GitHub Copilot)
Add to
.vscode/mcp.json. Note that the top-level key is servers, not mcpServers:Any other MCP client
Any other MCP client
Configure a stdio server with command
npx and args ["-y", "@koreai/arch-mcp-tools"]. Optionally, set an AGENTS_URL variable to pin an environment. Alternatively, use a version of the following prompt in your AI coding tool’s chat for it to do the configuration.Authenticate
Authentication is automatic when you callplatform_connect — it tries the following methods in the order:
- Explicit token — pass an
authTokenparameter. - Stored credentials — reads the same encrypted credential store used by
kore-platform-cli login. - Device authorization — opens your browser and polls until approval completes in the same
platform_connectcall.