MCP server for connecting AI platforms (Claude, ChatGPT, etc.) to your norc account — manage cron jobs, machines, and run history from a chat.
- Generate a norc API key: vault → Settings → API Keys → Generate key.
- Add this server to your MCP client's connector config, pointing at
https://mcp.norc.app/mcpwith your key as the Bearer token (exact field depends on the client).
list_jobs,create_job,update_job,delete_joblist_machines,rename_machine,delete_machinelist_runs
This server is a thin, stateless client — it holds no secrets and no database access of its own. It only forwards your API key to vault.norc.app (or $NORC_VAULT_URL). Run your own instance if you'd like:
pnpm install
pnpm build
PORT=3000 node dist/server.jsNote: self-hosting this server does not mean self-hosting norc itself — it still talks to the hosted norc API.
docker run -p 3000:3000 norcapp/norc-mcpSet NORC_VAULT_URL if you're pointing at a non-default vault instance:
docker run -p 3000:3000 -e NORC_VAULT_URL=https://vault.norc.app norcapp/norc-mcpMIT