npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@koredev/arch-mcp-tools

v1.0.0-rc.202607031117

Published

Arch MCP tools for Kore.ai Agent Platform (build, evaluate, optimize, debug, analyze)

Readme

Arch MCP Tools

@koredev/arch-mcp-tools is a Model Context Protocol (MCP) server that connects your AI coding assistant to the Kore.ai Agent Platform. It gives the assistant a set of tools to build, evaluate, optimize, debug, and analyze agents on the platform — create and edit projects, agents, and tools; run evaluations; inspect live sessions and traces; and diagnose failures — directly from your editor or terminal.

It works with any MCP-compatible client (Claude Code, Cursor, VS Code, Codex CLI, and others). The server is exposed to clients under the name arch-agent-platform, and its tools are prefixed platform_* and debug_*.

Requirements

  • Node.js 18 or newer — the server runs via npx, no separate install needed.
  • A Kore.ai Agent Platform account — you authenticate on first connect (see Authentication).

Install

@koredev/arch-mcp-tools is a standard stdio MCP server. Every client launches it the same way:

command:  npx
args:     -y  @koredev/arch-mcp-tools

Add it under a server named arch-agent-platform using your client's config below. (No environment is baked in — see Choosing an environment.)

Claude Code

claude mcp add arch-agent-platform -- npx -y @koredev/arch-mcp-tools

Or add it to .mcp.json (project) or ~/.claude.json (global):

{
  "mcpServers": {
    "arch-agent-platform": {
      "command": "npx",
      "args": ["-y", "@koredev/arch-mcp-tools"]
    }
  }
}

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "arch-agent-platform": {
      "command": "npx",
      "args": ["-y", "@koredev/arch-mcp-tools"]
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json — note the top-level key is servers (not mcpServers):

{
  "servers": {
    "arch-agent-platform": {
      "command": "npx",
      "args": ["-y", "@koredev/arch-mcp-tools"]
    }
  }
}

Codex CLI

codex mcp add arch-agent-platform -- npx -y @koredev/arch-mcp-tools

Or add to ~/.codex/config.toml — note this is TOML, not JSON:

[mcp_servers.arch-agent-platform]
command = "npx"
args = ["-y", "@koredev/arch-mcp-tools"]

Any other MCP client

Configure a stdio server with command npx and args ["-y", "@koredev/arch-mcp-tools"]. Optionally set an AGENTS_URL environment variable to pin an environment.

Or just ask your assistant

Paste this into your coding tool's chat and it will wire the server up for you:

Add an MCP server named arch-agent-platform that runs npx -y @koredev/arch-mcp-tools, and put it in this project's MCP config. Config location by tool — Claude Code: .mcp.json (mcpServers) · Cursor: .cursor/mcp.json (mcpServers) · VS Code: .vscode/mcp.json (servers) · Codex: ~/.codex/config.toml ([mcp_servers.arch-agent-platform]). Optionally set AGENTS_URL to my environment.

Choosing an environment

No environment is hardcoded. On first use, the tools ask which environment to connect to — or you can pin one by setting AGENTS_URL in the server's env (or by passing serverUrl to platform_connect).

| Environment | URL | | ----------- | -------------------------------- | | Production | https://agents.kore.ai | | Dev | https://agents-dev.kore.ai | | Staging | https://agents-staging.kore.ai | | QA | https://agents-qa.kore.ai |

Example with a pinned environment (Claude Code / Cursor shape):

{
  "mcpServers": {
    "arch-agent-platform": {
      "command": "npx",
      "args": ["-y", "@koredev/arch-mcp-tools"],
      "env": {
        "AGENTS_URL": "https://agents.kore.ai"
      }
    }
  }
}

Tools

Arch Build

Create and change platform projects, agents, tools, configuration, versions, deployments, and imports.

| Tool | Description | | ------------------------ | -------------------------------------------------------- | | platform_projects | Manage projects (list, get, create, update, delete) | | platform_agents | Manage agents (list, get, save_dsl) | | platform_versions | Manage agent versions (list, create, get, promote, diff) | | platform_deployments | Manage deployments (list, create, get, retire, rollback) | | platform_tools | Manage tools (list, get, create, update, delete, test) | | platform_import_export | Import and export projects | | platform_config | Manage project and LLM configuration | | platform_workspaces | List, switch, and inspect active workspaces |

Arch Evaluate

Generate eval assets, run eval workflows, and read CI evidence.

| Tool | Description | | -------------------------- | ------------------------------------------------ | | platform_eval_personas | Manage and generate eval personas | | platform_eval_scenarios | Manage and generate eval scenarios | | platform_eval_evaluators | Manage eval evaluators and templates | | platform_eval_sets | Manage eval sets | | platform_eval_runs | Manage eval runs, preflight, cases, and heatmaps | | debug_harness_logs | Get CI execution logs |

Arch Optimize

Validate packages, inspect compiler-visible models, and drive repair loops.

| Tool | Description | | ----------------------------- | ----------------------------------------------------------------------- | | platform_validate_package | Validate a local package and optional import preview | | platform_package_model | Show compiler-visible agents, tools, constraints, refs, and diagnostics | | debug_lint_abl | Run ABL repair and design lint checks | | debug_why_transcript_failed | Correlate transcript symptoms with ABL file/line causes | | debug_diagnose_transcript | Alias for transcript failure diagnosis |

Arch Debug

Connect to live sessions, trace failures, and inspect execution state.

| Tool | Description | | ---------------------------- | -------------------------------------------------- | | platform_connect | Connect and authenticate to the platform | | debug_list_agents | List available agents by domain | | debug_load_agent | Load an agent and create a debug session | | debug_send_message | Send a message to an agent | | debug_get_current_state | Inspect agent context, gather progress, flow state | | debug_traces | Search trace events (type, text, agent, error) | | debug_get_span_tree | View hierarchical execution flow | | debug_explain_decision | Explain agent decisions with context | | debug_get_flow_graph | View state machine graph (JSON or Mermaid) | | debug_get_errors | Get errors, warnings, and escalations | | debug_list_active_sessions | List observable sessions | | debug_session | Subscribe/unsubscribe to session traces |

Arch Analyze

Explain documentation, diagnostics, and system health signals.

| Tool | Description | | ----------------------- | ------------------------------------------ | | debug_docs | Get or search ABL documentation | | debug_diagnose | Diagnose agent config and execution issues | | debug_analyze_session | Automated session diagnostics |

Authentication

Authentication is automatic when you call platform_connect — it tries, in order:

  1. Explicit token — pass an authToken parameter.
  2. Stored credentials — reads the same encrypted credential store used by kore-platform-cli login.
  3. Device authorization — opens your browser and polls until approval completes in the same platform_connect call.

Credentials are saved for reuse in future sessions.

License

MIT — see LICENSE.