Overview
Use this page when you want to connect an MCP-compatible client to Cevoid and understand the current analytics-focused MCP surface. The Cevoid MCP server is Cevoid’s hosted MCP server for connecting AI clients to your Cevoid workspaces. You can use it to give tools like Claude, Cursor, and ChatGPT secure access to Cevoid context through a single MCP endpoint. The current MCP surface is Analytics. That means you can query UGC analytics, browse saved reports, inspect the query schema, and discover dimensions and filters without leaving your AI tool. If you need direct REST integrations from your own application code, use the API Reference instead.When to use MCP
Use MCP when you want an AI client to query Cevoid analytics data or discover available reports without building your own API layer first. Use the API Reference instead when you want direct REST integrations from your own application code.Connect
Usehttps://mcp.cevoid.com/mcp as the MCP server URL.
Use a client that supports MCP over streamable HTTP and OAuth-based authentication, such as Claude, Cursor, or ChatGPT.
Quickstart
- Open an MCP-compatible client such as Claude, Cursor, or ChatGPT.
- Point it at
https://mcp.cevoid.com/mcp. - Complete the OAuth flow for the Cevoid workspace or workspaces you want to query.
- Start with
run-queryfor direct analytics questions, orlist-reportswhen you need to browse curated report presets.
Verify the connection
Your first successful result should be a schema-first analytics answer fromrun-query or a report catalog response from list-reports.
Try a prompt like:
Authentication
The Cevoid MCP server uses OAuth 2.1 for authentication. Access tokens are short-lived, resource-bound to the Cevoid MCP endpoint, and carry both principal and authorized workspace identity. Clients can maintain sessions with rotating refresh tokens.- Access is scoped to the workspace or workspaces selected during authorization.
- The server exposes tools for read-only analytics workflows in Phase 1.
- Clients should use the advertised Protected Resource Metadata and include the Cevoid MCP endpoint as the OAuth
resource. - Clients can identify themselves with OAuth Client ID Metadata Documents or Dynamic Client Registration.
Client implementer details
Use the discovery documents instead of hard-coding OAuth endpoints where your client supports discovery.- MCP endpoint:
https://mcp.cevoid.com/mcp - OAuth resource:
https://mcp.cevoid.com/mcp - OAuth scope:
mcp:tools - Protected Resource Metadata:
https://mcp.cevoid.com/.well-known/oauth-protected-resource/mcp - Authorization Server Metadata:
https://mcp.cevoid.com/.well-known/oauth-authorization-server - Client identification: OAuth Client ID Metadata Documents are supported. Dynamic Client Registration is available as a fallback.
- Token revocation: supported through the advertised OAuth revocation endpoint.
Rate limits
The main analytics tool calls are rate limited per authenticated principal.run-queryandrun-report: 20 requests per minute.list-reports,get-query-schema,list-dimensions, andget-filter-values: 60 requests per minute.
Retry-After header when the client should wait before retrying.
Available tools
| Category | Tool | Description |
|---|---|---|
| Workspace | list-workspaces | List the workspaces this MCP session can access. |
| Analytics | list-reports | List saved analytics reports and curated presets for an authorized workspace. |
run-query | Query Cevoid analytics directly with a schema-first query object. | |
get-query-schema | Inspect the supported analytics query schema for a module. | |
get-report | Get metadata for a saved analytics report by report ID. | |
run-report | Execute a saved analytics report by report ID and date range. | |
list-dimensions | List the currently available analytics dimensions and metadata for a module. | |
get-filter-values | Get valid values for a specific analytics filter. |
cevoid://analytics/query-schemacevoid://analytics/dimensionscevoid://analytics/filterscevoid://analytics/filter-valuescevoid://analytics/reportscevoid://analytics/capabilities
Example prompts
-
“What reports do I already have for UGC performance?”
Starts with
list-reports. -
“Show me the top performing posts for the last 30 days.”
Routes to
run-query. -
“What types of analytics queries can you run for UGC?”
Uses
get-query-schema. -
“Which workspaces can I access in this MCP session?”
Uses
list-workspaces.