OrgX MCP Server

Agent orchestration + org memory via MCP. Manage initiatives and decisions from any client.

Remote serverstreamable-http

What is the OrgX MCP MCP server?

If you already use OrgX MCP, the orgx mcp mcp server is the piece that lets your assistant work with it directly. Agent orchestration + org memory via MCP. Manage initiatives and decisions from any client.

What the server does

The task outlives the chat. OrgX MCP is organizational continuity for AI agents. Make AI work resumable, reviewable, and provable across agents. OrgX lets the next agent continue from the decisions, artifacts, approvals, owners, and proof the last agent left behind.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • orgx_bootstrap — Establish session context, scopes, and routing guidance
  • orgx_search — Find entities, decisions, artifacts, and memory
  • orgx_inspect — Hydrate one entity with execution context
  • orgx_recommend — Get next-action recommendations or morning brief signals
  • orgx_write — Create or update durable OrgX records
  • orgx_attach — Attach proof, URLs, documents, screenshots, or artifacts
  • orgx_act — Launch, pause, complete, validate, delete, or otherwise act on an entity
  • orgx_plan — Start, resume, edit, improve, or complete a plan session
  • orgx_spawn — Guard, classify, spawn, or hand off specialist agent work
  • orgx_decide — Create, remember, approve, reject, or list decisions
  • orgx_submit_receipt — Submit durable proof, attribution, quality, or outcome receipts
  • orgx_emit_activity — Emit append-only execution telemetry

Credentials and setup notes

Configuration is passed through the environment: MCP_SERVICE_KEY, ORGX_SERVICE_KEY, ORGX_API_URL, MCP_JWT_SECRET, ORGX_INTERNAL_SECRET, OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • pnpm (matches the repo's package manager) - Cloudflare account with Workers enabled - The following environment variables must be configured for both the worker and the Next.js app: - MCP_SERVICE_KEY (Vercel) / ORGX_SERVICE_KEY (Worker secret) - ORGX_API_URL - MCP_JWT_SECRET (Worker secret) - ORGX_INTERNAL_SECRET (Worker secret; must match the OrgX web app runtime secret) - Existing

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. OrgX MCP's toolset — orgx_bootstrap, orgx_search, orgx_inspect and 11 more — is a fair guide to whether it matches your workflow. It is maintained by com.useorgx; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against OrgX MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch OrgX MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
orgx_bootstrapEstablish session context, scopes, and routing guidance.
orgx_searchFind entities, decisions, artifacts, and memory.
orgx_inspectHydrate one entity with execution context.
orgx_recommendGet next-action recommendations or morning brief signals.
orgx_writeCreate or update durable OrgX records.
orgx_attachAttach proof, URLs, documents, screenshots, or artifacts.
orgx_actLaunch, pause, complete, validate, delete, or otherwise act on an entity.
orgx_planStart, resume, edit, improve, or complete a plan session.
orgx_spawnGuard, classify, spawn, or hand off specialist agent work.
orgx_decideCreate, remember, approve, reject, or list decisions.
orgx_submit_receiptSubmit durable proof, attribution, quality, or outcome receipts.
orgx_emit_activityEmit append-only execution telemetry.
orgx_request_attentionForward a typed question, permission, approval, or recovery request with native continuation context.
orgx_poll_attentionRead the durable answer and client continuation state.

How to install the OrgX MCP MCP server

{
  "mcpServers": {
    "orgx": {
      "command": "npx",
      "args": ["-y", "@useorgx/wizard"],
      "env": {
        "MCP_SERVICE_KEY": "your-value",
        "ORGX_SERVICE_KEY": "your-value",
        "ORGX_API_URL": "your-value",
        "MCP_JWT_SECRET": "your-value",
        "ORGX_INTERNAL_SECRET": "your-value",
        "OAUTH_CLIENT_ID": "your-value",
        "OAUTH_CLIENT_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • pnpm (matches the repo's package manager) - Cloudflare account with Workers enabled - The following environment variables must be configured for both the worker and the Next.js app: - MCP_SERVICE_KEY (Vercel) / ORGX_SERVICE_KEY (Worker secret) - ORGX_API_URL - MCP_JWT_SECRET (Worker secret) - ORGX_INTERNAL_SECRET (Worker secret; must match the OrgX web app runtime secret) - Existing
VariableDescriptionRequired
MCP_SERVICE_KEYCredential the server authenticates with.Yes
ORGX_SERVICE_KEYCredential the server authenticates with.Yes
ORGX_API_URLEndpoint or connection string the server talks to.Yes
MCP_JWT_SECRETCredential the server authenticates with.Yes
ORGX_INTERNAL_SECRETCredential the server authenticates with.Yes
OAUTH_CLIENT_IDConfiguration value read at startup.Optional
OAUTH_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use OrgX MCP to orgx bootstrap.
  • Use OrgX MCP to orgx search.
  • Use OrgX MCP to orgx inspect.

Frequently asked questions

It connects OrgX MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (orgx_bootstrap, orgx_search, orgx_inspect, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with OrgX MCP directly.