OpenConnector exposes provider Actions through MCP, HTTP, OpenAPI, local Action guides, and the Web Console. This document is the detailed reference that keeps endpoint lists and protocol examples out of the README.
| Surface | Endpoint | Use it for |
|---|---|---|
| MCP | POST /mcp |
Agent hosts that can call MCP tools. |
| MCP metadata | GET /mcp/tools |
Preview the discovery-oriented MCP tool set. |
| HTTP runtime API | /v1/* |
SDK-style clients, scripts, and direct Action execution. |
| OpenAPI | GET /openapi.json |
API importers, reference generation, and strongly scoped one-Action specs. |
| Action guide | GET /api/actions/:actionId/agent.md |
Agent-readable markdown guide for one Action. |
| Web Console | GET / |
Browser workflow for browsing providers, configuring credentials, and debugging Actions. |
When runtime authentication is configured, /v1/* and /mcp callers should send a bootstrap token,
persistent runtime token, or JWT access token as:
Authorization: Bearer <runtime-token-or-jwt>
Persistent runtime tokens carry independent Action rules and provider proxy grants. Their
allowedProxies list is empty by default, so a persistent token cannot call /v1/proxy/:service
until a provider service or * is explicitly granted.
The Node server accepts JWT access tokens when OOMOL_CONNECT_JWKS_URI,
OOMOL_CONNECT_JWT_ISSUER, and OOMOL_CONNECT_JWT_AUDIENCE are configured together. JWT
authentication coexists with existing runtime tokens and does not apply to admin endpoints. See
Configuration for the resource-server scope and Node-only
limitations.
Admin endpoints under /api/*, /docs, and the Web Console use OOMOL_CONNECT_ADMIN_TOKEN when it
is configured.
Point MCP-capable clients at:
http://localhost:3000/mcp
The local MCP endpoint supports stateless POST JSON-RPC requests with JSON responses. It does not
keep GET SSE streams open.
The MCP server exposes a small discovery-oriented tool set:
list_appslist_connectionssearch_actionsget_action_guideexecute_action
Use list_connections to discover configured accounts before selecting one. Both
get_action_guide and execute_action accept an optional connectionName:
get_action_guide request:
{
"actionId": "example.get_record",
"connectionName": "secondary"
}execute_action request:
{
"actionId": "example.get_record",
"connectionName": "secondary",
"input": {
"recordId": "record-123"
}
}Omitting connectionName uses the default connection. A requested named connection must exist;
the runtime does not silently fall back to another account. Connection results expose only safe
account identity fields and never include stored credentials.
Preview MCP tool metadata:
curl -s http://localhost:3000/mcp/toolsRuntime clients should use /v1. Responses use a uniform JSON envelope:
{
"success": true,
"message": "OK",
"data": {},
"meta": {}
}Discover Actions:
curl -s http://localhost:3000/v1/actions
curl -s "http://localhost:3000/v1/actions?service=github"
curl -s http://localhost:3000/v1/actions/github.get_current_userExecute an Action:
curl -s -X POST http://localhost:3000/v1/actions/github.get_current_user \
-H 'content-type: application/json' \
-d '{"input":{}}'Select a named connection with x-oo-connector-alias:
curl -s -X POST http://localhost:3000/v1/actions/github.get_current_user \
-H 'x-oo-connector-alias: work' \
-H 'content-type: application/json' \
-d '{"input":{}}'The alias query parameter is also accepted:
curl -s -X POST "http://localhost:3000/v1/actions/github.get_current_user?alias=work" \
-H 'content-type: application/json' \
-d '{"input":{}}'POST /v1/actions/:actionId accepts an optional Idempotency-Key header. Without this header,
every request is executed normally. Generate a new, unpredictable key for each logical operation,
then reuse that key only when retrying the same operation:
IDEMPOTENCY_KEY=$(openssl rand -hex 16)
curl -s -X POST http://localhost:3000/v1/actions/github.get_current_user \
-H "Idempotency-Key: $IDEMPOTENCY_KEY" \
-H 'content-type: application/json' \
-d '{"input":{}}'The runtime trims leading and trailing whitespace from the key. The remaining value must be
non-empty and no longer than 255 UTF-8 bytes; invalid values return 400 invalid_input. The key
namespace is runtime-wide rather than scoped to a bearer token, caller, or connection, so callers
should use sufficiently unique values.
When this header is present, the Action input must not exceed an object/array nesting depth of 100
levels. Deeper inputs return 400 invalid_input before the Action is dispatched.
The request identity includes the Action id, JSON input, and effective connection. JSON object key
order does not affect the identity, and explicitly selecting the default connection is equivalent
to omitting the connection. Reusing a key with a different Action, input, or effective connection
returns 409 idempotency_key_conflict.
After a request completes, retries with the same identity replay its original HTTP status and body,
including the original executionId when present. This applies to successful results as well as
completed Action or provider failures. Responses remain replayable for 24 hours; after that replay
window, the same key may execute the Action again.
A duplicate received while the original request is running returns
409 idempotency_request_in_progress. The same response is returned when execution may have
produced a provider-side effect but the runtime cannot confirm or persist the final response. The
runtime does not automatically dispatch the Action again in either case.
Idempotency provides durable duplicate suppression and response replay, but it does not guarantee
exactly-once execution by the provider. This behavior applies to the HTTP Action endpoint; MCP
execute_action calls do not accept an idempotency key.
Each Action has a local markdown guide that includes the input schema, scopes, provider permissions, current connection identity, and request examples:
curl -s http://localhost:3000/api/actions/github.get_current_user/agent.mdThe Web Console also lets you copy cURL, TypeScript, and agent prompt examples for each Action.
Upload a temporary local transit file for Actions that accept a file URL:
curl -s -X POST http://localhost:3000/api/files \
-F "file=@./report.pdf"The response includes a downloadUrl under /api/files/:fileId. Local transit files are stored
under OOMOL_CONNECT_DATA_DIR/files and are cleaned up by age.
GET /v1/healthGET /v1/providersGET /v1/actionsGET /v1/actions/searchGET /v1/actions?service=<service>GET /v1/actions/:actionIdPOST /v1/actions/:actionIdGET /v1/appsGET /v1/apps/services/:serviceGET /v1/apps/authenticatedPOST /v1/proxy/:service
POST /v1/proxy/:service proxies one provider API request when that provider has a registered or
provider-specific local proxy executor. Providers without a proxy executor return proxy_not_supported.
Request body:
{
"endpoint": "/provider/path",
"method": "GET",
"query": { "limit": "10" },
"headers": { "accept": "application/json" },
"body": { "name": "example" }
}endpoint must be a relative path beginning with /; absolute URLs are rejected. The runtime keeps
stored credentials local and lets the provider proxy executor apply provider-specific authentication.
Successful responses use the standard /v1 success envelope with data.status, data.headers, and
data.data.
Deployment and runtime proxy access is controlled by OOMOL_CONNECT_ALLOWED_PROXIES and
OOMOL_CONNECT_BLOCKED_PROXIES; Action policy does not affect it. Persistent runtime tokens add an
independent allowedProxies grant that can only narrow those rules. The requested provider must be
allowed by every configured proxy policy layer and explicitly granted to the persistent token.
An empty token grant denies proxy access, and OOMOL_CONNECT_BLOCKED_PROXIES="*" disables provider
proxies entirely. Bootstrap runtime tokens and JWTs have no stored token grant, so only the
deployment and runtime proxy policy applies to them.
These endpoints power the Web Console, examples, and setup scripts:
GET /api/providersGET /api/providers/:serviceGET /api/actionsGET /api/actions/searchGET /api/actions/:actionIdGET /api/actions/:actionId/agent.mdPOST /api/filesGET /api/files/:fileIdDELETE /api/files/:fileIdGET /api/connectionsPUT /api/connections/:serviceDELETE /api/connections/:serviceGET /api/oauth/configsPUT /api/oauth/configs/:serviceDELETE /api/oauth/configs/:servicePOST /api/oauth/authorizationsGET /oauth/callbackGET /api/runtime-tokensPOST /api/runtime-tokensDELETE /api/runtime-tokens/:idGET /api/runsGET /api/runs/:idPOST /mcpGET /mcp/toolsGET /openapi.json
GET /api/runs accepts service, actionId, caller, and ok filters in addition to cursor pagination.
caller identifies the runtime entry point (http, mcp, or web), not an end-user identity. Each run uses
its executionId as the stable run ID; GET /api/runs/:id returns that single redacted audit record.
Action execution responses include meta.executionId, meta.actionId, and meta.auditPersisted once execution
has started. auditPersisted: false means the action result is valid but its audit record could not be stored.