Closed beta. The MCP Manager Admin API and MCP server are available now to a
limited set of workspaces through the MCP Manager Admin API entitlement
(
ff-mcpm-admin), ahead of general availability. If you don’t see Settings →
MCP & API in your workspace, it isn’t enabled for you yet — ask your MCP Manager
contact to join the beta.List Hosts
Read-only List the workspace’s hosts. Returns each host as{ guid, name, enabled, authenticationType }, scoped to what the caller may see, like the hosts page.
MCP tool: list_hosts · REST: GET /api/v1/mcpm-admin/hosts · Capability: Create and manage API tokens (createAndManageApiTokens)
Parameters: none.
Example
Create Host
Create an API-token host. Creates an enabled API-token host (the kind a token connects through). Returns{ guid, name, enabled, authenticationType }. To mint a usable token for a gateway, use issue_gateway_token.
MCP tool: create_host · REST: POST /api/v1/mcpm-admin/hosts · Capability: Create and manage API tokens (createAndManageApiTokens)
Parameters
A human-readable name for the host (e.g. “CI runner”).
Rename Host
Rename a host. Renames the host. Saved only when the name actually changes. Returns{ guid, name, enabled, authenticationType }.
MCP tool: rename_host · REST: PATCH /api/v1/mcpm-admin/hosts/:hostGuid/name · Capability: Create and manage API tokens (createAndManageApiTokens)
Parameters
The guid of the host to rename (from list_hosts).
The new name for the host.
Enable Host
Enable a host. Sets the host to enabled. Saved only when the state changes. Returns{ guid, name, enabled, authenticationType }.
MCP tool: enable_host · REST: POST /api/v1/mcpm-admin/hosts/:hostGuid/enable · Capability: Disable and enable hosts (enableDisableHosts)
Parameters
The guid of the host to enable (from list_hosts).
Disable Host
Disable a host. Sets the host to disabled. Saved only when the state changes. Returns{ guid, name, enabled, authenticationType }.
MCP tool: disable_host · REST: POST /api/v1/mcpm-admin/hosts/:hostGuid/disable · Capability: Disable and enable hosts (enableDisableHosts)
Parameters
The guid of the host to disable (from list_hosts).
Delete Host
Destructive Delete a host. Hard-deletes the host. Returns{ deleted: true, hostGuid }.
MCP tool: delete_host · REST: DELETE /api/v1/mcpm-admin/hosts/:hostGuid · Capability: Delete hosts (deleteHosts)
Parameters
The guid of the host to delete (from list_hosts).
List Connections
Read-only List gateway connections, optionally filtered by host, gateway, or user. Lists the gateway connections in the workspace — each is a host’s live connection to a gateway, established when a token was issued. Filter by hostGuid, gatewayGuid, and/or userGuid (the establishing user). Returns{ guid, name, enabled, gatewayGuid, hostGuid, creatorGuid } per connection; use get_connection for detail and last-activity.
MCP tool: list_connections · REST: GET /api/v1/mcpm-admin/connections · Capability: Disable and enable connections (enableDisableConnections)
Parameters
Only return connections for this host (from list_hosts).
Only return connections for this gateway (from list_gateways).
Only return connections established by this user (from list_users).
Get Connection
Read-only Inspect one connection, including its last successful call and recent errors. Returns full detail for a connection: the summary fields plus the resolved gateway/host names and the establishing user’s email, how many servers it carries, and — to debug a failing connection — the date of its last successful call (lastSuccessfulCallAt) and its recentErrors (from the connection’s MCP call logs). No separate log/alert query is needed.
MCP tool: get_connection · REST: GET /api/v1/mcpm-admin/connections/:connectionGuid · Capability: Disable and enable connections (enableDisableConnections)
Parameters
The guid of the connection to inspect (from list_connections).
Disable Connection
Disable a connection. Cuts off the connection without deleting it (sets enabled=false). Saved only when the state changes. Returns the connection summary. MCP tool:disable_connection · REST: POST /api/v1/mcpm-admin/connections/:connectionGuid/disable · Capability: Disable and enable connections (enableDisableConnections)
Parameters
The guid of the connection to disable (from list_connections).
Enable Connection
Enable a connection. Re-enables a previously disabled connection (sets enabled=true). Saved only when the state changes. Returns the connection summary. MCP tool:enable_connection · REST: POST /api/v1/mcpm-admin/connections/:connectionGuid/enable · Capability: Disable and enable connections (enableDisableConnections)
Parameters
The guid of the connection to enable (from list_connections).
Further reading
Logging
Where to go next in this section.
Authentication & access
Tokens, the entitlement, capability gating, and error codes for every operation here.
Tool & endpoint reference
The full reference index across every domain.
Capabilities
What each capability named on this page actually allows.

