🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

catalyst-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

catalyst-mcp

MCP server with developer-workflow tools for catalyst-core projects — migration guidance, debugging, build config checks, task planning, and framework knowledge search.

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Catalyst MCP

MCP server providing developer-workflow tools for catalyst-core projects: migration guidance, debugging, build config checks, task planning, and framework knowledge search.

Requirements

Run this from a project that either is catalyst-core (the source repo) or declares catalyst-core as a dependency in its package.json. The server validates this at startup and exits with an error otherwise.

Install & run

The server needs a local knowledge-base database (context.db). If it doesn't exist yet, mcp.js creates and seeds it automatically on first run — no separate setup step required.

Recommended — via the create-catalyst-app CLI, which fetches and installs it inside an existing project:

npx create-catalyst-app catalyst-mcp

Standalone, from inside a project that is (or depends on) catalyst-core:

npx catalyst-mcp

Client config:

{
  "catalyst-mcp": {
    "command": "node",
    "args": ["node_modules/catalyst-mcp/mcp.js"]
  }
}

To force a re-seed (e.g. to pick up the latest knowledge base), run node node_modules/catalyst-mcp/setup.js manually at any time — it's idempotent.

Tools

ToolPurpose
get_conversion_tasksList pending migration tasks, filtered by tier (routing/config/server, native, hooks). Version-aware for legacy 0.2.x vs current 0.3.x+ projects.
get_conversion_statusReport migration progress — what's done vs pending, with detected Catalyst generation.
debug_issueMatch a reported error/symptom against known issues and return cause + fix, plus related framework knowledge.
check_configValidate WEBVIEW_CONFIG for Android/iOS against required fields.
get_build_flowExplain build/serve/deploy behavior for a platform and mode, version-aware (webpack-era 0.2.x vs Vite 0.3.x+), with related known errors.
get_architecture_diagramReturn a layered architecture diagram (e.g. bridge, routing, build pipeline) with project-specific context and pitfalls.
create_task_planCreate a persisted, step-by-step migration/implementation plan that survives context resets.
update_task_stepUpdate a step's status (done/blocked/skipped/in_progress) on the active plan, with auto-advance.
get_active_taskResume the current active plan — pending steps and progress. Useful at the start of a session.
close_task_planClose a completed plan, optionally deleting its task file.
query_knowledgeFull-text search over Catalyst framework documentation/knowledge base.
sync_knowledge_basePull the latest knowledge base from tata1mg/catalyst-core@main and re-seed it.
create_github_issueDraft (dry-run) or publish a GitHub issue against catalyst-core, with duplicate detection and template rendering.

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts