Skip to main content
OrgX exposes a Model Context Protocol (MCP) server that integrates with ChatGPT, Cursor, Claude, VS Code, and other remote MCP clients. This gives agents shared organizational memory for decisions, artifacts, tasks, approvals, and project execution context without leaving the client you already use.
Use https://mcp.useorgx.com/mcp as the default hosted OrgX MCP URL. It is the streamable HTTP endpoint for remote MCP clients. Use https://mcp.useorgx.com/sse only when a legacy client explicitly asks for SSE.

Questions This Page Answers

  • Which OrgX MCP URL should I use in each client?
  • Which clients render OrgX widgets vs plain tool output?
  • What are the fastest first calls to verify the integration is healthy?

Prerequisites

An OrgX account at useorgx.com
Node.js 18+ installed
A supported remote MCP client (ChatGPT, Cursor, Claude, VS Code, or equivalent)

Quick Setup

Supported Clients At A Glance

ClientSetup styleWidgetsBest for
ChatGPTApps & ConnectorsYesConversational approvals + organizational memory
Cursormcp-remote configYesIDE-assisted coding + delivery
ClaudeConnectorsYesConversational planning + review
VS CodeHTTP server configYesPlanning and delivery inside editor
Other remote MCP clientsRoot URL + OAuthUsually text fallbackGeneric MCP interoperability

Verify Connection

After authorizing, verify the MCP server is working by calling:
{ "tool": "workspace", "args": { "action": "get" } }
You should see your workspace name and ID.

First Calls That Prove The Integration

Once connected, these calls prove the integration is healthy:
  1. workspace action=get
  2. orgx_recommend view=summary
  3. orgx_search query="recent decisions" scope=decisions
After that, the highest-value first write calls are:
  • orgx_decide to save a durable team decision
  • orgx_decide action=list to review pending human approvals
  • orgx_spawn to dispatch focused work
  • orgx_recommend to get initiative health and blockers
  • scaffold_initiative to create a real IWMT hierarchy
  • orgx_decide / orgx_decide to run the human-in-the-loop loop
  • orgx_search when you need the lower-level memory search directly

Widgets & Resources

OrgX MCP also exposes resources and widgets:
Resource URIDescription
orgx://initiative/{id}Full initiative details as markdown
ui://widget/decisions.htmlDecision widget HTML
ui://widget/agent-status.htmlAgent status widget HTML
ui://widget/initiative-pulse.htmlInitiative pulse widget HTML
ui://widget/morning-brief.htmlMorning brief widget HTML
Clients that support MCP Apps rendering can show OrgX decision, search, agent status, initiative pulse, task dispatch, and morning brief widgets inline.

Transport Options

The OrgX MCP server supports two transports:
TransportEndpointUse Case
HTTPhttps://mcp.useorgx.com/mcpRecommended streamable HTTP endpoint
SSEhttps://mcp.useorgx.com/sseLegacy SSE endpoint
Both transports use the same OAuth 2.1 browser authorization flow when the client supports remote MCP OAuth.

Troubleshooting

  • Verify the MCP server URL is correct
  • Reconnect the MCP server entry in your client to refresh OAuth state
  • Ensure you have network access to mcp.useorgx.com
  • Disconnect and reconnect OrgX in your MCP client to restart OAuth - Complete browser sign-in and grant access to the correct workspace - Verify your OrgX account is active
  • Restart your IDE after updating mcp.json - Check the MCP config file for JSON syntax errors - Run the health check command to verify connectivity
  • Some tools require write scopes (for example, decision approvals)
  • Reconnect and approve broader scopes if prompted
  • Check that your OrgX role has the required permissions

Security Notes

  • OAuth access tokens are short-lived and refreshed by your MCP client
  • All traffic is encrypted via HTTPS
  • OAuth grants are scoped to specific permissions
  • Revoke access by disconnecting OrgX from your MCP client or OrgX settings

Next Steps

MCP Protocol Reference

Deep dive into the MCP protocol implementation.

MCP Tools Reference

Complete API documentation for all tools.