GoodData MCP Server
The Model Context Protocol (MCP) server exposes GoodData platform capabilities to external MCP clients. You can connect from your own MCP client, such as a chatbot, IDE assistant, or custom agent, and interact with GoodData using natural language.
AI is becoming part of everyday work, but connecting it safely to company data can be a challenge. Teams want their chatbots, IDE assistants, and custom agents to work with real data, while keeping access secure and consistent.
The GoodData MCP Server lets AI clients connect directly to governed analytics in GoodData, so they always reason with trusted metrics, metadata, and platform capabilities instead of raw or ad-hoc queries.
How It Works
- The MCP server exposes GoodData platform capabilities to AI agents and developer tools.
- It supports the MCP protocol with error handling, multi-workspace isolation, and authentication.
- You connect with your own MCP client using an API token or, for supported clients, by signing in through your organization’s identity provider.
- Once connected, you can use natural language to trigger GoodData tools, such as listing metrics, creating alerts, creating metrics, running exports, or searching workspace metadata.
- Tool search helps MCP clients discover additional tools on demand, so the server can expose a larger set of capabilities without listing every tool up front.
- In addition to the always-on core tools, the server can expose selected GoodData v1 API operations as MCP tools. These generated tools let agents use supported workspace-scoped API operations directly through MCP, without calling the REST API separately.
The latest supported MCP protocol version is 2025-11-25. Use MCP client libraries that support this protocol version.
Available Tools
The MCP Server provides a core set of always-on tools and additional tools that can be discovered through tool search. The exact number of available tools depends on the enabled MCP capabilities and the MCP client’s support for dynamic tool discovery.
Tool Search
When a large number of MCP tools is available, the server uses tool search to keep the initial tool list manageable. Tool-search-capable MCP clients can search for tools by intent and then call the matching tool.
This applies to both manually defined tools and generated API tools. Tool names and descriptions are used for search relevance.
Important Notice
MCP clients that do not support tool search see only the always-on core tools. Additional generated tools are available only to clients that support dynamic tool discovery.
Workspace Metadata
- get_workspace_info - Get workspace name, description, and organization information.
- list_workspace_metrics - List metrics with optional RSQL filtering and pagination. Supports optional
entity_idfor single-metric retrieval. - list_workspace_attributes - List attributes with optional RSQL filtering and pagination. Supports optional
entity_idfor single-attribute retrieval. - list_workspace_visualizations - List visualizations with optional RSQL filtering and pagination. Supports optional
entity_idfor single-visualization retrieval. - list_workspace_dashboards - List dashboards with optional RSQL filtering and pagination. Supports optional
entity_idfor single-dashboard retrieval.
List operations:
- entity_id - Retrieve a single entity through the relevant
list_*tool when supported. - include - Request related entities in one call, such as facts, labels, datasets, or visualizations.
- limit - Optional pagination. Recommended values are 10-50 for quick browsing and 100+ for comprehensive lists.
- rsql_filter - Optional RSQL filtering, for example
title=like=*revenue*ortags=in=('finance','kpi').
All list_* tools support the include parameter to fetch related entities in a single request.
Examples of valid includes:
- Metrics:
["facts", "attributes"] - Dashboards:
["visualizations"] - Attributes:
["labels", "datasets"]
Example usage:
list_workspace_metrics(entity_id="revenue_total")
list_workspace_dashboards(entity_id="sales_dashboard", include=["visualizations"])
list_workspace_attributes(include=["labels", "datasets"])Users
- list_users - Browse organization users.
- list_workspace_users - Browse users with access to the current workspace.
Datasources and Data Modeling
- list_datasources - List datasources with optional RSQL filtering and pagination. This is a read-only operation and supports optional
datasource_idfor single-datasource retrieval. - test_datasource - Test datasource connectivity before scanning.
- scan_datasource - Discover Physical Data Model (PDM) from database schemas.
- generate_ldm - Generate Logical Data Model (LDM) from PDM.
- register_upload_notification - Invalidate cache after new data uploads.
Note: Datasource operations are organization-scoped and may require elevated permissions, such as MANAGE.
Analytics Authoring
- get_workspace_analytics - Retrieve complete analytics model from a workspace, including metrics, dashboards, visualizations, filter contexts, attribute hierarchies, export definitions, and dashboard plugins.
- create_metric - Create a new governed metric in the workspace.
- deploy_workspace_analytics - Deploy full analytics model to a workspace.
Warning
deploy_workspace_analytics replaces the existing analytics model in the workspace. Use it carefully.
Generated GoodData v1 API Tools
When generated API tools are enabled, the MCP Server can expose selected GoodData v1 API operations as MCP tools.
Generated tools are workspace-scoped. They can include:
- read operations based on GET endpoints
- selected create operations based on allowlisted POST endpoints
Generated tools do not include:
- PUT, PATCH, or DELETE operations
- action endpoints
- organization-scoped or admin-scoped endpoints
- create operations that are not explicitly allowed
This lets agents perform supported metadata and authoring tasks through MCP, such as reading workspace objects or creating supported workspace objects, without calling the REST API directly.
Generated tools still enforce the same GoodData permissions as the underlying API. If a user does not have permission for an operation, the tool returns a permission error that the MCP client can show to the user.
Memory
- create_memory_item - Add persistent instruction or context to the AI system prompt for the workspace. Maximum length is 255 characters.
AI-Powered Search and Chat
- ai_search - Natural language search across workspace data with AI-generated insights.
- ai_chat - Conversational assistant with intelligent routing:
- Semantic Search - Find existing dashboards, metrics, and visualizations.
- Visualization Creation - Generate new visualizations from natural language.
- General Questions - Get answers about analytics concepts and best practices.
- Supports thread continuity for multi-turn conversations.
AFM Execution (Label Elements)
- compute_label_elements - Retrieve distinct label (attribute) values with:
- Pattern filtering (SQL LIKE syntax:
"Premium%") - Exact filtering (
["USA", "Canada"]) - Exclusion mode (
complement_filter=True) - Pagination (default: 100, max: 10000)
- Dependent filters and validation by metrics/attributes
- Pattern filtering (SQL LIKE syntax:
- execute_visualization - Execute a saved visualization and return its computed result so MCP clients can use the data in downstream analysis or assistant workflows.
Automations and Alerts
- list_notification_channels - Discover available delivery channels (email, Slack, webhooks).
- list_automations - List all automations in the workspace.
- create_metric_alert - Create unified metric-based alerts supporting:
- Comparison alerts:
GREATER_THAN,LESS_THAN,EQUAL_TO,GREATER_THAN_OR_EQUAL_TO,LESS_THAN_OR_EQUAL_TO,NOT_EQUAL_TO - Range alerts:
BETWEEN,NOT_BETWEEN - Relative alerts:
INCREASES_BY,DECREASES_BY,CHANGES_BY(withDIFFERENCEorCHANGEarithmetic) - Schedule configuration (cron format, timezone)
- Recipients (internal user IDs and/or external email addresses)
- Metric formatting (titles and number formats for readable notifications)
- Comparison alerts:
- update_metric_alert - Update alert thresholds, operators, recipients, schedules, or convert alert type.
- update_alert_state - Pause or resume alerts by setting the target state. Use
state="pause"orstate="unpause". The tool accepts either a single automation ID or a list of automation IDs. - create_scheduled_export - Create a recurring export of a dashboard or visualization.
Example of Use
- You ask the assistant: “Alert me if Total Revenue drops below 90K.”
- The assistant analyzes your request and sets parameters:
- metric =
Total Revenue - operator =
LESS_THAN - threshold =
90000 - schedule = every morning at 8am
- delivery = your default method
- metric =
- You get confirmation: “Alert created: will check daily and notify you when Total Revenue < 90K.”
Important Recipient Rules:
Recipient types must match the notification channel’s allowedRecipients setting:
- CREATOR: Only the current user can be an internal recipient.
- INTERNAL: Only
internal_recipients(user IDs) are allowed. - EXTERNAL: Both internal user IDs and external email addresses are allowed.
Export Tools
- run_export - Run an on-demand export and return a download URL and file metadata.
The run_export tool can run supported export modes, such as:
- dashboard PDF export
- tabular XLSX export
- raw execution export
- dashboard slide deck export in PPTX format
- widget image export, such as PNG snapshots
The tool returns structured metadata where available, such as MIME type, file size, dashboard or visualization links, row and column counts for tabular exports, and width and height for image exports. Large files are returned through download URLs instead of being embedded in the response. Small image assets may be returned inline when supported by the client.
Exports are asynchronous. The tool reports progress while the export is being prepared and returns the file information after the export is complete. Some export types, such as slide decks, may take longer than simple image or tabular exports.
The tool uses existing GoodData export permissions. If the user lacks the required permission, the tool returns an error with information about what needs to be fixed before retrying.
Knowledge Base Tools
The GoodData MCP Server provides tools for accessing platform documentation and analytics knowledge. These allow MCP clients to retrieve structured guidance on MAQL, dashboards, datasets, visualizations, and the Logical Data Model.
- get_maql_guide - Returns MAQL syntax rules, function explanations, and examples. Clients can use this to learn metric syntax that is not part of general LLM training data.
- list_knowledge_topics - Lists all available knowledge topics:
gooddata,maql,dashboards,visualizations,datasets, andldm-schema. - get_knowledge_topic - Retrieves the full content of a specific knowledge topic.
Knowledge Resources
All knowledge topics exposed through the Knowledge Tools are also available as MCP Resources for clients that support resource querying. This allows AI agents to load documentation directly as structured content and use it to understand GoodData concepts.
Available Knowledge Resource URIs:
| MCP Resource URI | Description |
|---|---|
gdc-analytics-rules://gooddata | Overview of the GoodData analytics platform, key concepts, and system structure. Useful for general platform understanding. |
gdc-analytics-rules://maql | MAQL reference including syntax, operators, functions, and examples. Essential for generating or validating metrics. |
gdc-analytics-rules://dashboards | Documentation for dashboards, widgets, layout, filters, and interactions. Helps AI agents reference or construct dashboards correctly. |
gdc-analytics-rules://visualizations | Details on visualization types, configuration options, bucket structure, sorting, and limitations. Useful for generating valid visualization definitions. |
gdc-analytics-rules://datasets | Information about dataset structure, grain, roles, and relationships. Useful for metadata reasoning or dataset design. |
gdc-analytics-rules://ldm-schema | Logical Data Model structure and modeling rules, including dataset relationships and keys. Important for AI-driven LDM creation and validation. |
Each resource contains structured documentation that AI assistants can load, summarize, and reason about, enabling more accurate results when working with analytics or metadata definitions.
Connect
Endpoint
Use this endpoint to connect:
https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcpReplace <workspaceId> with the workspace ID you want to work in.
Authentication
The MCP Server supports multiple authentication approaches. Choose the method based on how the MCP client runs:
| Authentication | Best for | Runs as the end user? |
|---|---|---|
| Interactive SSO | A person using a supported desktop or CLI MCP client on their own machine | Yes. The user signs in through the organization’s identity provider. |
| Signed JWT | Integrations with their own server-side backend | Yes. The backend creates a short-lived token for the mapped user. |
| Per-user API token | Small or static user sets without a backend | Yes. The token represents its owner. |
| Shared API token | Prototypes, demos, or single-user setups | No. All requests use the same identity. |
For server-side integrations, prefer a signed JWT when the integration needs to act as individual users. Interactive SSO is intended for a person using an MCP client directly.
Interactive SSO
With interactive SSO, you do not create or paste a GoodData API token into the MCP client configuration. A compatible client discovers GoodData authentication automatically, opens your organization’s normal sign-in page in a browser, and obtains access after you sign in. Tool calls then run with your existing GoodData permissions. The token represents the same user access available through the GoodData API; it is not limited only to MCP operations.
Beta Feature
Interactive SSO is currently available in beta on GoodData Cloud. Enable MCP Server: Interactive SSO in the organization’s Early Access settings.
Custom domains require no additional SSO setup. Authentication and discovery URLs use the organization’s configured hostname.
Interactive SSO currently supports MCP clients that run on the same machine as the user’s browser, such as desktop applications and CLI clients. Remotely hosted or web-based MCP clients are not yet supported by this sign-in flow because the authorization redirect must return to a local address on the user’s machine. Use an API token or, for a server-side integration that acts as individual users, a signed JWT instead.
To connect with interactive SSO, configure the MCP server URL without an Authorization header. For example:
{
"mcpServers": {
"GoodData": {
"type": "http",
"url": "https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp"
}
}
}For Claude Code, you can add the connection from the command line:
claude mcp add --transport http GoodData \
"https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp"On first use:
- The MCP client detects that authentication is required.
- The client opens your organization’s sign-in page in a browser.
- Sign in as you normally do to GoodData.
- Control returns to the MCP client and subsequent tool calls run as your user.
There is currently no separate approval step after identity-provider sign-in.
By default, an interactive SSO connection expires after seven days of inactivity. The inactivity period restarts whenever the client uses the connection, and compatible clients renew access automatically. Your identity provider can end the session sooner. If the connection expires, sign in again when the client prompts you.
Signing out of GoodData in the browser does not end an existing MCP connection. Use your MCP client’s disconnect or clear-authentication action. If the client does not provide one, the connection can be revoked through:
POST /oauth2/revokeSend the token to revoke as form data using application/x-www-form-urlencoded. Revoking a refresh token ends the connection. Revoking only an access token does not prevent the client from renewing the connection with its refresh token.
API Token
API-token authentication continues to work as before and remains suitable for clients that cannot use interactive SSO. Pass the token as a Bearer token in your MCP client configuration:
Authorization: Bearer <your-api-token>Build a Client with Interactive SSO
Off-the-shelf clients that support interactive OAuth discover the required endpoints automatically. If you build your own client, GoodData exposes OAuth discovery and authorization endpoints on the organization hostname:
| Endpoint | Purpose |
|---|---|
/.well-known/oauth-protected-resource | Identifies the authorization server that protects the GoodData host. |
/.well-known/oauth-authorization-server | Advertises the authorization endpoints and supported options. |
/oauth2/authorize | Starts browser sign-in. |
/oauth2/token | Exchanges the authorization result for a token and renews access. |
/oauth2/register | Supports dynamic client registration. |
/oauth2/revoke | Revokes an access or refresh token. |
Interactive SSO uses the authorization-code and refresh-token flows with PKCE S256. PKCE S256 is required. Public clients do not use a client secret. GoodData supports dynamic client registration or client identification through a client-metadata URL. Authorization redirects are currently limited to local addresses.
Example Configurations
The examples below use API-token authentication. If your client supports interactive SSO, configure only the MCP server URL as described in Interactive SSO and omit the Authorization header.
Claude Desktop
Claude Desktop supports stdio MCP servers natively. To connect to the GoodData streamable HTTP endpoint, use the mcp-remote bridge through npx.
Configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"GoodData": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer <your-api-token>"
}
}
}
}Restart Claude Desktop after saving the configuration. The Bearer token is passed through the env block instead of directly as a CLI argument to avoid cross-platform issues with spaces.
Claude Code
claude mcp add --transport http GoodData \
"https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp" \
--header "Authorization: Bearer <your-api-token>"The --transport option must come before the server name. Use http as the transport value, not streamable-http.
Cursor
Configuration file: ~/.cursor/mcp.json for global configuration, or .cursor/mcp.json for a project. You can also configure the server from Cursor Settings > MCP.
{
"mcpServers": {
"GoodData": {
"url": "https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp",
"headers": {
"Authorization": "Bearer <your-api-token>"
}
}
}
}Cursor auto-detects the transport from the URL. You do not need to add a type field.
VS Code with GitHub Copilot
Configuration file: .vscode/mcp.json, or use MCP: Open User Configuration from the Command Palette.
{
"servers": {
"GoodData": {
"type": "http",
"url": "https://<your-gooddata-host>/api/v1/actions/workspaces/<workspaceId>/ai/mcp",
"headers": {
"Authorization": "Bearer <your-api-token>"
}
}
}
}The root key is servers, not mcpServers. The type is http, not streamable-http. VS Code tries Streamable HTTP first and falls back to SSE. This setup requires the GitHub Copilot extension with MCP support enabled.
Usage Examples
Browse Metrics
Tool: list_workspace_metrics
Optional filters:
title=like=*revenue*- Find metrics with “revenue” in the titletags=in=('finance','kpi')- Filter by tagslimit=10- Limit results to 10 metrics
Get specific metric:
list_workspace_metrics(entity_id="revenue_total")- Retrieve full metric details including MAQL definition
Create a Metric
Tool: create_metric
Use this tool to create a governed metric in the workspace. The metric becomes part of the semantic layer and can be reused by other GoodData capabilities.
Create Alerts
Tool: create_metric_alert
Comparison Alert Example:
automation_id: "revenue-milestone"
metric_id: "revenue_total"
operator: "LESS_THAN"
threshold: 90000
metric_format: "$#,##0"
metric_title: "Total Revenue"
notification_channel_id: "email-channel-id"
internal_recipients: ["user-id-123"]
cron: "0 0 8 * * *"Range Alert Example:
operator: "BETWEEN"
from_value: 100000
to_value: 1000000Relative Alert Example:
operator: "INCREASES_BY"
compare_metric_id: "revenue_last_month"
threshold: 0.10
arithmetic_operator: "CHANGE"
compare_metric_format: "$#,##0"
compare_metric_title: "Last Month Revenue"Update Alerts
Tool: update_metric_alert
Examples:
- Update threshold:
threshold=2000000 - Convert to range alert:
operator="BETWEEN",from_value=100000,to_value=500000 - Change to relative alert:
operator="INCREASES_BY",compare_metric_id="revenue_last_month",threshold=0.15 - Update schedule:
cron="0 30 14 * * 1-5",timezone="UTC"
Update Alert State
Tool: update_alert_state
Use this tool to pause or resume alerts.
automation_id: "revenue-milestone"
state: "pause"Create Scheduled Exports
Tool: create_scheduled_export
Use this tool to create recurring exports of dashboards or visualizations.
Run an Export
Tool: run_export
Use this tool to create an on-demand export. The MCP client can resolve a dashboard, visualization, or widget first, and then call run_export with the required export mode and identifiers.
Example requests:
Export the Executive KPI dashboard to PDF.Give me the Revenue table for Q4 as Excel.Create a PPTX of the Quarterly Review dashboard.Capture a PNG of the Pipeline Funnel widget at 1920 x 1080.
The response includes a download URL and metadata for the exported file.
Use Generated API Tools
When generated API tools are enabled and your MCP client supports tool search, you can ask for supported workspace-scoped API operations directly.
For example, an agent can search for the right tool and use it to read or create supported workspace metadata without making a separate REST API call.
Important Notice
Generated tools are subject to the same permissions as the GoodData API. Tool availability does not guarantee that the current user has permission to complete the requested operation.
AI Search and Chat
AI Search:
ai_search(question="What were the total sales last quarter?")AI Chat:
ai_chat(question="Give me bar chart slicing revenue by country")Multi-turn conversation:
# First request
result1 = ai_chat(question="Give me revenue by country")
thread_id = result1.thread_id_suffix
# Follow-up maintains context
result2 = ai_chat(
question="And now filter to USA only",
thread_id_suffix=thread_id
)Label Elements (AFM)
Tool: compute_label_elements
Examples:
- Basic lookup:
label_id="attr.customer.name" - Pattern search:
pattern_filter="Premium%" - Exact filter:
exact_filter=["North America", "Europe"] - Exclusion:
exact_filter=["Archived", "Deleted"],complement_filter=True - Pagination:
offset=200,limit=100
Scan Datasource and Generate LDM
Step 1: Scan datasource
scan_datasource(
datasource_id="my_db",
schemas=["public"],
scan_tables=True,
scan_views=True
)Step 2: Generate LDM
generate_ldm(
datasource_id="my_db",
pdm=scan_result # Pass entire scan result or scan_result["pdm"]
)Register Upload Notification
Tool: register_upload_notification
Use this tool after new data is uploaded for a datasource to invalidate related cache. This operation is organization-scoped and requires the MANAGE permission.
Security and Permissions
- Authentication: All operations require bearer authentication. The bearer token can be a GoodData API token, a signed JWT, or a token obtained automatically after interactive sign-in.
- Workspace Isolation: All operations are scoped to the authenticated user’s workspace context.
- Permission Enforcement: Tools respect user permissions and only return objects you can access. Generated API tools enforce the same permissions as the underlying GoodData API.
- Organization-scoped Operations: Datasource operations may require elevated permissions.
- Alert Recipients: Must match the notification channel’s
allowedRecipientsconfiguration.
Limits and Behavior
- Stateless HTTP Streaming: Optimized for MCP clients with stateless operation.
- Pagination: List tools support
limitparameter (recommended: 10-50 for quick browsing). - RSQL Filtering: Advanced filtering using RSQL syntax on list operations.
- Cron Format:
"second minute hour day month weekday"(e.g.,"0 0 8 * * *"= daily at 8 AM). - Label Elements: Default limit 100, maximum 10000.
- Error Handling: Structured error responses with field-level validation messages.
- Tool Search: Tool-search-capable clients can discover additional tools on demand. Clients without tool search see only the always-on core tools.
- Generated API Tools: Generated tools are workspace-scoped and include GET operations and selected create operations only.
- Exports: On-demand exports may take time to complete. Large files are returned through download URLs rather than embedded in the tool response.
Troubleshooting
401/403 Errors:
- If interactive SSO is enabled and your client supports it, a
401authentication challenge can cause the client to open the browser sign-in flow. This is expected behavior. - If you use an API token, verify that the token is valid and has access to the workspace.
- A
403usually means the authenticated user does not have permission for the requested operation. Check the required workspace or organization permissions.
- On GoodData Cloud, verify that MCP Server: Interactive SSO is enabled in the organization’s Early Access settings. If it is disabled, the OAuth discovery URLs return
404. - Verify that the MCP client supports interactive OAuth and runs on the same machine as the browser. Remotely hosted clients cannot complete the current local redirect flow.
- If a previously working connection has been inactive for seven days, the client may ask you to sign in again.
- A dynamically registered client is remembered for 30 days. If a client has not been used for longer, a new sign-in can cause the client to register itself again.
- Some hosted clients cannot use either interactive SSO or static API-token authentication. For example, Slack’s MCP client uses a remote callback and does not provide a static-token option. Use a server-side integration with a signed JWT when you need to act as mapped GoodData users.
404 Errors:
- Object may not exist or you may lack permission to view it.
- Verify workspace ID is correct in the endpoint URL.
Invalid RSQL Filter:
- Check RSQL syntax (e.g.,
title=like=*revenue*). - Verify field names match available metadata fields.
Alert Creation Failures:
- Comparison alerts require
thresholdparameter. - Range alerts require both
from_valueandto_value. - Relative alerts require
compare_metric_idandthreshold. - Recipients must match notification channel’s
allowedRecipientspolicy.
Tool Search Is Not Available:
- Check whether your MCP client supports dynamic tool discovery.
- If the client does not support tool search, only the always-on core tools are listed.
Generated API Tool Is Missing:
- Check that generated API tools are enabled for your environment.
- Some operations are intentionally not exposed, including PUT, PATCH, DELETE, action endpoints, organization-scoped endpoints, and non-allowlisted create operations.
- Use tool search to find generated tools instead of relying only on the initial tool list.
Export Fails:
- Verify that you have the required export permission for the requested export type.
- Check that the referenced dashboard, visualization, widget, or execution result exists and is accessible.
- For large exports, wait for the export to complete and use the returned download URL.
Label Elements Errors:
limitmust be > 0 and ≤ 10000.sort_ordermust be"ASC"or"DESC".
LDM Generation:
- Ensure PDM comes from successful
scan_datasourceoperation. - Can pass entire scan result or just the
pdmfield.
Compatibility
The GoodData MCP Server is compatible with MCP clients that support the required transport and protocol version.
Interactive SSO additionally requires a client that supports interactive OAuth and runs on the same machine as the user’s browser. Desktop applications and CLI clients can use this flow. Remotely hosted or web-based clients are not yet supported by interactive SSO.
Some capabilities, such as generated API tools, require MCP clients that support tool search and dynamic tool discovery. Clients without tool search can still use the always-on core tools.
Supported client examples:
- Claude Desktop, through
mcp-remote - Claude Code
- Cursor
- VS Code with GitHub Copilot
- MCP Inspector
- Custom MCP clients