Skip to main content
OrgX MCP gives every MCP-compatible assistant a shared, reviewable record of organizational work. Connect once to carry decisions, owners, delegated work, artifacts, approvals, and proof across clients and conversations. Ask naturally. Your assistant chooses the right OrgX tool. Use this page when you want to connect, understand the work model, or find the safest next call. Use the MCP Tools Reference when you need the exact contract for every tool.

Connect

Add this remote MCP server to any compatible client:
The hosted endpoint uses OAuth 2.1 with PKCE. Your client opens OrgX in a browser, where you sign in and choose the workspace and access you want to grant. No API key is required.
Use the streamable HTTP endpoint above for new clients. The legacy SSE endpoint is available at https://mcp.useorgx.com/sse when a client cannot use streamable HTTP. For ChatGPT Developer Mode, use https://mcp.useorgx.com/mcp?profile=chatgpt.
1

Add the endpoint

Paste the hosted URL into your MCP client or use the client-specific setup below.
2

Approve the connection

Complete the browser sign-in and review the workspace plus requested resource access before approving.
3

Confirm the session

Call orgx_bootstrap. Do not start work until the returned workspace and visible tools match what you intended to authorize.
A healthy connection has a valid OAuth session, the expected workspace, a non-empty granted_scopes value, and the tools required for the current workflow in visible_tools.

Quick setup by client

Enable Developer Mode in ChatGPT under Settings → Security, then add a custom connector with:
Complete the OrgX OAuth flow in your browser. See the ChatGPT integration guide for the ChatGPT-specific connection and widget checks.
For more clients, transport details, and recovery steps, see MCP Client Setup.

How OrgX works

OrgX turns a one-off prompt into a durable work episode: context → decision → execution → evidence.

Shared workspace context

Work stays inside a workspace boundary, so assistants can retrieve the right decisions, initiatives, artifacts, and active work without mixing unrelated company context.

Accountable execution

Delegated work has an owner, lifecycle, approval boundary, and evidence trail. Completion is a claim until the relevant artifact or receipt is recorded.

Start every session with bootstrap

Call orgx_bootstrap at the beginning of a fresh session, after reconnecting, or before a multi-step workflow:
The arguments are optional. The purpose is to establish context before the assistant searches, delegates, changes state, or claims progress.
If the workspace is wrong or the required tool is absent, stop and reconnect or choose the correct profile and access. Do not compensate by guessing IDs or claiming work happened elsewhere.

The durable work loop

1

Start from context

Bootstrap the session and confirm the workspace, scopes, and visible tools.
2

Find the relevant record

Use orgx_search for a question or orgx_inspect when you already know the record ID.
3

Choose the next move

Use orgx_recommend or orgx_plan when priority, sequencing, or acceptance criteria are unclear.
4

Act within the boundary

Use orgx_decide, orgx_spawn, scaffold_initiative, or orgx_act according to the user’s intent and granted access.
5

Leave proof behind

Attach the artifact or evidence with orgx_attach and record a completion receipt with orgx_submit_receipt when the work is actually done.

Tools

Your assistant chooses these tools automatically. Use this table when you need the exact routing decision, minimum input, or result to expect.
The full reference is generated from the tool contracts and includes deprecated aliases, exact schemas, required scopes, profiles, and response examples. Use MCP Tools Reference when implementing a client or debugging a validation error.

Common workflows

Continue existing work

Call orgx_bootstrap, then orgx_search, orgx_inspect, and orgx_recommend. Start from the existing record instead of opening a parallel task.

Record a decision

Use orgx_decide with the choice, rationale, owner, and initiative when known. Ask for approval when the decision changes a consequential plan.

Delegate work

Use orgx_spawn only when the user wants an agent to do the work. Include the expected artifact, deadline, quality bar, and initiative or task binding when available.

Complete with proof

Do not infer completion from a queued or successful tool response. Attach the output, submit a receipt, and let the user review the resulting evidence.

Profiles and access

The endpoint profile controls discovery: it determines which tools the client sees. OAuth scopes control which resource actions the connection can perform. Workspace membership still determines which records the user can reach.

Tool profiles

Use the bare endpoint for most clients. Append ?profile=NAME only when a smaller surface helps the workflow. For example:
Reconnect the client after changing the profile so it refreshes tools/list.

OAuth access presets

Read

View decisions, agents, initiatives, artifacts, receipts, and memory without changing work.

Operate

Read and change work, including decisions, delegated agents, initiatives, and evidence.

Customize

Choose read or operate access separately for each resource.

OAuth scopes

OrgX evaluates the required scope when a tool runs. A connection can discover a tool and still receive a structured 403 insufficient_scope response when the OAuth grant is too narrow. Reconnect and authorize the missing resource action; do not retry the same call unchanged.

Interactive widgets and resources

Clients that support MCP Apps can render OrgX views inside the conversation.
A widget is a rendered view of tool output, not a second source of truth. Re-call the underlying read tool when freshness matters—especially after a state change, reconnect, or long-running agent run. Hosts without MCP Apps support still receive the structured tool result.

MCP or REST?

The MCP ↔ REST parity page maps the surfaces and documents the canonical v1 routes.

Troubleshooting

Call orgx_bootstrap, inspect visible_tools, and confirm the endpoint profile. Reconnect after changing a profile or OAuth grant so the client refreshes its tool list.
The OAuth grant does not include the resource action required by the tool. Reconnect and choose the missing access, or use a read-only workflow.
Stop before writing. Call orgx_bootstrap with the intended workspace, then use orgx_search or orgx_inspect to verify the record boundary.
Treat the widget as a snapshot. Re-call the corresponding read or status tool and compare the returned state before telling the user that work is complete, blocked, or still running.
Check get_agent_status, inspect the bound task or initiative, and look for a pending decision or blocker. A queued run is not evidence that the final artifact exists.
Confirm the OpenClaw gateway is running and use the local bridge setup guide. The hosted URL and local bridge have overlapping tools but are not identical transports or surfaces.

Next steps

MCP Client Setup

Configure Claude, Cursor, ChatGPT, VS Code, OpenClaw, or another remote client.

MCP Tools Reference

Browse exact inputs, scopes, profiles, and response examples.

Agent Quickstart

Run a first workflow from context through accountable completion.