@rocketjumptech/kortex-mcp
v0.1.1
Published
MCP proxy CLI for connecting local MCP clients to a remote Kortex deployment.
Readme
@rocketjumptech/kortex-mcp
CLI proxy for connecting local MCP clients, such as Codex or Claude Code, to a remote Kortex MCP endpoint.
Usage
Run directly with npx:
npx -y @rocketjumptech/kortex-mcp --url https://your-deployment.convex.site/mcp --api-key krtxu_xxxUse in a Codex config:
[mcp_servers.kortex-dev]
command = "npx"
args = ["-y", "@rocketjumptech/kortex-mcp", "--url", "https://your-deployment.convex.site/mcp", "--api-key", "krtxu_xxx"]
startup_timeout_sec = 30Development
From the repo root:
pnpm --filter @rocketjumptech/kortex-mcp build
node packages/mcp-client/dist/index.js --url https://your-deployment.convex.site/mcp --api-key krtxu_xxxPublishing
This package is set up to publish from GitHub Actions via npm trusted publishing.
Workflow:
.github/workflows/publish-kortex-mcp.yml
Publish paths:
- manually via GitHub Actions
workflow_dispatch - automatically on tags matching
kortex-mcp-v*
Before the workflow can publish successfully, configure trusted publishing in npm for:
- package:
@rocketjumptech/kortex-mcp - repository:
rocketjumptech/mindworks-kortex-monorepo - workflow:
publish-kortex-mcp.yml - branch or environment: typically
main
Release flow:
- Bump
packages/mcp-client/package.jsonversion. - Merge to
main. - Either run the workflow manually, or push a tag like
kortex-mcp-v0.1.0.
