Baselight
Server Details
Baselight’s MCP server lets you seamlessly integrate your favourite applications with the Baselight platform. By connecting to the MCP server, you can browse, discover, and query 70,000+ datasets and 450+ billion rows directly from your preferred environment—whether you’re building, analysing, or exploring.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 9 of 9 tools scored.
Each tool targets a distinct resource or action: dataset vs table metadata, search vs query, user info, and health check. No obvious overlaps; agents can clearly distinguish between them.
All tools start with 'baselight_' and use lowercase underscores. Most follow verb_noun (get_, search_), but 'ping' is a standalone verb and SDK tools use domain prefix (sdk_query_execute) rather than pure verb_noun. Mostly consistent with minor deviations.
9 tools is well-scoped for a data exploration and query server. Each tool serves a clear purpose without redundancy, covering discovery, metadata, query execution, and health checks.
Covers the full read-only workflow: search datasets/tables, retrieve metadata, execute SQL queries, fetch results, and user info. No obvious missing operations for its intended use case.
Available Tools
9 toolsbaselight_get_dataset_metadataget_dataset_metadataARead-onlyInspect
Retrieve detailed schema and metadata for a specific dataset using Baselight format @username.dataset. Use this after discovering datasets to understand their structure before querying. Tables within datasets follow the format @username.dataset.table (always double-quoted identifiers in SQL).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The identifier of the dataset to inspect, should be something like @user.dataset |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. Description adds valuable context: naming conventions for dataset and table identifiers, and double-quoted SQL identifiers. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, each with clear purpose: first defines action, second provides usage context and naming details. No filler, well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter and no output schema, the description addresses purpose, usage context, and naming conventions. Could optionally mention that it returns schema details like column names and types, but overall sufficient for agent decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Single parameter 'id' with schema description already includes example format '@user.dataset'. Description reinforces this, adding clarity without redundancy. Schema coverage is 100%, so the description adds marginal but sufficient value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Retrieve' and resource 'detailed schema and metadata for a specific dataset', with explicit format (@username.dataset). Distinguishes from siblings like baselight_get_dataset_tables and baselight_get_table_metadata by focusing on overall dataset structure.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides usage context: 'Use this after discovering datasets to understand their structure before querying.' Implies sequence, but does not explicitly exclude other tools or state when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_get_dataset_tablesget_dataset_tablesARead-onlyInspect
Retrieve a paginated list of tables from a specific dataset using Baselight format @username.dataset. Use this tool to browse datasets with many tables or to search for specific tables within a dataset. Each page returns up to 100 tables with metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The identifier of the dataset to browse, should be something like @user.dataset | |
| page | No | Page number to retrieve (starts at 1). Each page contains up to 100 tables. | |
| query | No | Optional text search query to filter tables by name or title. If omitted, returns all tables. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint and openWorldHint. The description adds useful behavioral details: pagination, page limit of 100 tables, and metadata inclusion. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no waste. The main action is front-loaded, and every sentence adds value (usage context, pagination detail).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema, the description partly compensates by mentioning metadata is returned. It covers purpose, parameters, and pagination. Could specify metadata fields, but adequate for a list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds little beyond repeating schema info (e.g., id format). It does not elaborate on query or page semantics beyond defaults, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (retrieve), resource (tables from a specific dataset), and required format (@username.dataset), distinguishing it from siblings like search_tables and get_table_metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit use cases: browsing datasets with many tables or searching for specific tables. It lacks explicit when-not-to-use guidance or alternatives, but the context is clear given sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_get_table_metadataget_table_metadataARead-onlyInspect
Retrieve detailed schema and metadata for a specific table using Baselight format @username.dataset.table. Use this to understand table structure, column types, and constraints before writing SQL queries. Tables must be referenced in SQL with double quotes.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The full identifier of the table to inspect, should be something like @user.dataset.table |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description adds value by specifying the return content (schema, metadata, column types, constraints). It does not contradict annotations and provides additional behavioral context about the expected format and SQL quoting.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences that deliver essential information without fluff. Every sentence earns its place: purpose, usage context, and a critical usage hint. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read-only tool with no output schema, the description covers all necessary aspects: what it returns, when to use it, and formatting guidance. The agent has everything needed to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description of 'id', but the tool description goes beyond by reiterating the format (@username.dataset.table) and adding the practical constraint that tables must be referenced in SQL with double quotes. This adds meaning for the agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Retrieve' and the resource 'detailed schema and metadata for a specific table', making the tool's purpose unambiguous. It implicitly distinguishes from siblings like baselight_get_dataset_metadata (dataset-level) and baselight_search_tables (search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says to use this tool to understand table structure before writing SQL queries, providing clear context. While it does not list exclusions or alternatives, the sibling tool list implies other options, and the usage guidance is strong enough for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_get_userget_userARead-onlyInspect
Retrieve detailed information about a Baselight user including their profile bio, website, and public datasets. Use this to understand who owns datasets you're interested in.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | The username of the user to inspect |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint and openWorldHint. The description adds context about the data returned (bio, website, datasets) but does not detail behavior like error handling or response format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences: first defines the tool's action and returns, second provides usage context. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single required param, read-only), the description covers purpose, content, and when to use. Minor gaps: no mention of error cases or response format, but not critical for a retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'username' has a clear schema description. The tool description does not add further semantics beyond implying the parameter's purpose, but with 100% schema coverage, baseline is adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves detailed information about a Baselight user, listing specific attributes (profile bio, website, public datasets). It effectively distinguishes from siblings focused on datasets and search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear use case ('understand who owns datasets you're interested in') but lacks explicit when-not-to-use or alternative tools. No exclusionary guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_pingPing TestARead-onlyInspect
Simple ping test to verify MCP server is responding
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, indicating no side effects. The description adds that it is simple and verifies server response, fully disclosing behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence with no wasted words. It is appropriately sized for a simple ping tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, no output schema, and perfect annotations, the description is complete and does not require additional details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so baseline score of 4 applies as per rules. Description adds no param info, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is a ping test to verify server responsiveness, using specific verb and resource. This distinguishes it from sibling tools that deal with datasets and users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
While no explicit when/when-not or alternatives are provided, the context and name make it obvious this is for connectivity checks. It is safe to assume it's the only health check tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_sdk_get_resultssdk_get_resultsARead-onlyInspect
Retrieve results from a previously executed SDK job using the resultId from sdk-query-execute. If the query is complete, returns results immediately. If still pending, polls for up to 1 more minute. Use this after sdk-query-execute returns PENDING status.
| Name | Required | Description | Default |
|---|---|---|---|
| jobId | Yes | The result ID of the executed query (from `sdk-query-execute`). | |
| limit | No | Number of rows to return per page (max 100). Default is 100. | |
| offset | No | Row offset for pagination. Use to fetch subsequent pages (e.g., offset=100 for page 2). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, openWorldHint), the description adds that the tool polls for up to 1 minute if the query is still pending, returning results immediately if complete. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loading the main purpose, with each sentence adding essential information. No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the polling behavior and condition for immediate return. However, it does not describe the format of returned results (e.g., JSON structure, rows). With no output schema, a bit more detail would help.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds context that jobId comes from `sdk-query-execute`, but since schema coverage is 100% with descriptions for all three parameters, the added value is minimal, staying at the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves results from a previously executed SDK job using the resultId. It links to `sdk-query-execute`, which distinguishes it from sibling tools that deal with metadata, users, or searches.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly advises using this tool after `sdk-query-execute` returns PENDING status and describes polling behavior. However, it lacks explicit when-not-to-use guidance or alternative tool mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_sdk_query_executesdk_query_executeAInspect
Execute a SQL query on Baselight and wait for results (up to 1 minute). The query executes and returns the first 100 rows upon completion, or info about a pending query that needs more time. Use DuckDB syntax only, table format "@username.dataset.table" (double-quoted), SELECT queries only (no DDL/DML), no semicolon terminators, use LIMIT not TOP. If query is still PENDING, use sdk-get-results to continue polling. If totalResults > returned rows, use sdk-get-results with offset to paginate.
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | The SQL query to execute. table identifiers should be wrapped in double quotes, like "@user.dataset.table". Only SELECT queries are allowed. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important behaviors like waiting up to 1 minute, returning first 100 rows, and handling pending queries. However, there is a contradiction with annotations: readOnlyHint=false while the description restricts to SELECT queries only (read-only). This inconsistency reduces the score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, front-loaded with the main action, and every sentence provides specific, non-redundant instructions. No filler or unnecessary information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple input schema (1 param, no output schema), the description thoroughly covers behavior, including edge cases (pending queries, pagination) and references to sibling tools for follow-up actions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The sole parameter 'sql' has a schema description that already covers basic constraints. The description adds valuable extra context (no semicolon, LIMIT not TOP, double quotes) but repeats some schema information. With 100% schema coverage, the description still adds meaningful guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool executes a SQL query on Baselight and waits for results, specifying the wait time and row limit. It distinguishes itself from sibling tools like sdk-get-results by explicitly mentioning when to use them for polling and pagination.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit instructions on when to use this tool versus alternatives: if the query is PENDING, use sdk-get-results; if more rows are needed, use sdk-get-results with offset. It also specifies required syntax (DuckDB, double-quoted tables, SELECT only, no semicolons, LIMIT not TOP).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_search_catalogsearch_catalogARead-onlyInspect
Search the catalog for datasets using a text query and filters. Datasets in Baselight have the following format: @username.dataset. Datasets can be public or private — you can search and use all public datasets as well as the user's private datasets. This is typically the first step in the discovery workflow.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of datasets to return (1-20, default 10) | |
| query | Yes | The search query string, used for semantic search | |
| category | No | The dataset category to filter by |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and openWorldHint=true. The description adds valuable behavioral context: datasets follow a specific format (@username.dataset), and both public and user's private datasets are searchable. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with three sentences, no wasted words. The key information (search, first step, dataset format) is front-loaded. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description does not explain return values, but for a search tool this is acceptable. It covers the core purpose, usage context, and dataset naming convention. Could mention pagination or result structure, but the sibling tools cover details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% description coverage. The tool description adds minimal additional meaning: it specifies that query is 'used for semantic search' and implies category filters. This adds a bit of context beyond the schema, but not substantial.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches the catalog for datasets using a text query and filters. It specifies the verb 'Search', the resource 'catalog datasets', and distinguishes from siblings like 'baselight_search_tables' by focusing on datasets. The naming format and visibility information adds clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states this is 'typically the first step in the discovery workflow,' guiding when to use it. It does not explicitly state when not to use it or compare to alternatives, but the context is clear enough for an AI agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
baselight_search_tablessearch_tablesARead-onlyInspect
Search for tables using a text query and filters. Tables in Baselight have the following format: @username.dataset.table. Tables are grouped into datasets which can be public or private — you can search and use all public datasets as well as the user's private datasets. Search for tables directly when you are unable to find relevant datasets.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tables to return (1-20, default 10) | |
| query | Yes | The search query string, used for semantic search | |
| category | No | The dataset category to filter by |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. The description adds useful behavioral context about public/private dataset access and table format, enhancing transparency without contradicting annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each serving a purpose: stating the action, explaining the table format, and providing usage context. It is front-loaded and efficient, though could be slightly more compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema), the description covers the data model, search scope, and when to use. It does not explain return format, but that is acceptable for a search tool with no output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description mentions 'text query and filters' but does not add meaning beyond what the schema descriptions (e.g., 'semantic search' for query, limit range, category enum) already provide.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for tables using text and filters, and explains the table naming convention and dataset grouping. It distinguishes itself from sibling tools like baselight_search_catalog by advising direct table search when datasets cannot be found.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: 'Search for tables directly when you are unable to find relevant datasets.' This implies when to use it versus dataset search, though it does not list when not to use or alternative tools explicitly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!