MCP Tool Catalog¶
The hosted MCP gateway exposes the Contio User API as a discoverable set of MCP tools. The exact tools available to a session depend on the token's scopes and workspace role.
User tools¶
Available to any valid user token (PAT or OAuth).
Meetings¶
listMeetings— browse all meetingslistUpcomingMeetings— soonest future meetingssearchMeetings— filter by keyword, date, participant, or statusgetMeeting— full details of a specific meetingmanageMeetings— create, update, or delete a meeting (setaction)
Meeting items¶
listAgendaItems— full agenda of a meetinggetAgendaItem— details of one agenda itemmanageMeetingItems— create, update, delete, or assign an agenda or backlog item (setactionandbacklog)listBacklogItems— active unscheduled agenda itemsgetBacklogItem— details of one active backlog itemlistBacklogItemHistory— scheduled or discarded backlog items
Meeting participants¶
listMeetingParticipants— see who is in a meetingmanageMeetingParticipants— add, remove, or change a participant's role (setaction)
Meeting content¶
listMeetingAttachments— raw files attached to a meetinggetMeetingAttachment— metadata for one attachmentlistMeetingContext— AI context documents on a meetinggetMeetingContext— metadata for one context documentmanageMeetingContent— upload, download, or remove attachments and context (setactionandcontentType)getMeetingTranscript— transcript of a meeting
Action items¶
listActionItems— follow-up tasks across meetingsgetActionItem— details of one follow-up taskmanageActionItems— create, update, or delete a follow-up task (setaction)
Calendar¶
listCalendarEvents— events in a time rangegetCalendarEvent— details of one eventmanageCalendarEvents— create a meeting from an event, or link/unlink a meeting (setaction)
Meeting templates¶
listMeetingTemplates— available templates for creating a meeting
Contacts¶
listMeetingContacts— workspace contacts for meeting invitations
User tokens and profile¶
getMe— current user and workspace contextlistUserTokens— active personal access tokensdeleteUserToken— revoke a personal access token
Events¶
Live workspace events are delivered through the contio-events MCP resource, not as a tool. See the Hosted MCP Server guide for how to subscribe.
OAuth discovery¶
exchangeOAuthToken,revokeOAuthTokengetOAuthJwks,getOAuthOpenidConfiguration
The /v1/oauth/authorize endpoint is a browser redirect, not an MCP tool. Use the URL in your OAuth 2.1 + PKCE flow and call exchangeOAuthToken to mint tokens.
Grouped manageX tools¶
Several related write operations are surfaced as a single manageX tool. Callers set action to choose the lifecycle operation and then provide the fields for that action. Some families also use a discriminator field to select a variant:
| Tool | action values | Discriminator | Notes |
|---|---|---|---|
manageMeetings | create, update, delete | — | Lifecycle for meetings themselves. |
manageMeetingItems | create, update, delete, assign | backlog (false for agenda, true for backlog) | Agenda and backlog item lifecycle. |
manageMeetingParticipants | add, remove, updateRole | — | Participant management. |
manageActionItems | create, update, delete | — | Follow-up task lifecycle. |
manageCalendarEvents | createFromEvent, link, unlink | — | Calendar-to-meeting integration. |
manageMeetingContent | upload, download, delete | contentType (attachment or context) | Raw files and AI context documents. |
Each manageX tool maps to the same underlying v1 REST operationIds that existed before consolidation; only the MCP tool name changed.
Admin tools¶
Available only to workspace owners, admins, or tokens with workspace:write.
Workspace¶
getWorkspace,updateWorkspace
Members¶
listWorkspaceMembers,removeWorkspaceMember,updateWorkspaceMemberRole
API keys¶
listWorkspaceApiKeys,deleteWorkspaceApiKey
Webhooks¶
listWorkspaceWebhooks,createWorkspaceWebhook,deleteWorkspaceWebhookreEnableWorkspaceWebhook,rotateWorkspaceWebhookSecret
Discovering tools at runtime¶
An MCP client can call tools/list after initialization to see the tools available for the current token. The response includes each tool's name, description, and JSON input schema. The same information is published in the machine-readable manifests:
mcp.json— user toolsadmin-mcp.json— admin toolsoperations.json— per-operation metadata
See the Agent Integration guide for how to consume these artifacts.
Next steps¶
- Hosted MCP Server — connect your MCP client
- MCP vs. REST — choose the right integration style
- Security — how credentials and permissions are handled