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 (readOnlyHint, openWorldHint) cover safety and open-world assumptions. Description adds identifier format detail but does not disclose additional behavioral traits like error handling, pagination, or cost, which is acceptable given annotation coverage.
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: first states purpose, second adds usage guidance. No filler or repetition. Front-loaded and efficient.
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?
No output schema, but description gives reasonable expectation ('detailed schema and metadata'). Includes naming convention for tables. Could be more specific about return structure, but adequate for a 1-parameter 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?
Schema already describes id parameter; description adds concrete format example ('@user.dataset'), enhancing understanding beyond the schema definition. Coverage is 100% so baseline is 3; the example pushes it to 4.
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?
Clearly states the action (retrieve) and resource (schema and metadata for a specific dataset). Distinguishes from sibling tools like baselight_get_dataset_tables (tables only) and baselight_get_table_metadata (table-level).
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?
Explicitly says 'use this after discovering datasets to understand their structure before querying', providing a clear usage context. Also mentions table naming convention and SQL identifier style, though no when-not-to-use alternatives listed.
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 already provide readOnlyHint and openWorldHint. The description adds behavioral details such as pagination (up to 100 tables per page) and optional query filtering, 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?
Two sentences with no fluff: the first clearly states the purpose, the second explains usage and pagination limit. Every sentence contributes 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?
Covers pagination and optional search adequately for a list tool, though it lacks details on return format. The openWorldHint annotation compensates somewhat, but with no output schema, a brief mention of response fields would improve completeness.
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 reinforces the format for 'id' and the purpose of 'page' and 'query', but does not add significant new parameter-level details beyond the schema descriptions.
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 states a specific verb ('retrieve'), resource ('list of tables'), and context ('from a specific dataset using Baselight format @username.dataset'), clearly distinguishing it from sibling tools like baselight_search_tables.
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?
Explicitly states to use this tool for browsing datasets with many tables or searching for specific tables, but does not mention when not to use it or alternatives like baselight_search_tables.
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 indicate read-only; description adds value by specifying the Baselight format and quoting requirement. Does not cover response structure or rate limits, but sufficient given 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 front-loaded purpose, no wasted words.
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?
Provides a high-level summary of returned information (structure, column types, constraints) but lacks precise field listing due to no output schema. Still adequate for expected usage.
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% and schema description already covers the id parameter format. Description adds minimal extra value beyond schema.
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 verb ('retrieve') and resource ('detailed schema and metadata for a specific table'), and distinguishes from sibling tools like baselight_get_dataset_tables and baselight_get_dataset_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?
Advises using the tool before writing SQL queries and specifies the table referencing format with double quotes, but does not explicitly exclude cases or name alternative tools.
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=true and openWorldHint=true. The description adds context about the specific data returned (bio, website, public datasets), which goes beyond the annotations. 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 concise sentences, front-loaded with the main purpose, followed by a use-case. No extraneous 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?
For a simple retrieval tool with one parameter and useful annotations, the description adequately covers purpose and usage. It lacks explicit mention of response format, but given no output schema, this is acceptable.
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?
With 100% schema description coverage for the single parameter, the baseline is 3. The description does not add additional meaning to the 'username' parameter beyond what the schema provides.
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, including specific fields like profile bio, website, and public datasets. The verb 'retrieve' and resource 'user' are precise, and it naturally distinguishes from sibling tools focused on datasets.
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 'Use this to understand who owns datasets you're interested in,' providing a clear use case. It doesn't mention when not to use it or alternatives, but given the sibling tools, the context is sufficient.
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?
Annotations provide `readOnlyHint` and `openWorldHint`, and the description adds concrete polling behavior (up to 1 minute) and the condition for immediate returns. No contradiction.
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, front-loaded with the main purpose, and no unnecessary verbiage. 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?
Completeness is adequate: covers retrieval, polling, pagination parameters, and prerequisite. No output schema, but the tool returns results; description doesn't specify output format, which is acceptable given typical expectations.
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 description coverage is 100%, and the description adds context about `jobId` being from `sdk-query-execute`, enhancing the schema's minimal descriptions.
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 specifies retrieving results from a previously executed SDK job using the resultId, stating the verb ('Retrieve') and the resource ('results from a previously executed SDK job'), and distinguishes from siblings by referencing the prerequisite tool `sdk-query-execute`.
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?
Explicitly states when to use this tool: after `sdk-query-execute` returns PENDING status. Mentions polling behavior but does not explicitly state when not to use it or list alternative tools, though the sibling context implies the workflow.
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?
Discloses behavioral traits beyond annotations: waits up to 1 minute, returns first 100 rows, can return pending status. Does not contradict annotations; adds context that annotations alone do not provide.
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?
Description is a single paragraph with clear front-loading of purpose. Every sentence adds value, though it could be slightly more concise. Structure is logical, moving from purpose to constraints to follow-up actions.
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, description explains return format (first 100 rows, pending info, totalResults). Covers error/edge cases: pending query, pagination needs. Full coverage for a single-parameter 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 description coverage is 100%, so baseline is 3. Description adds value by reiterating syntax requirements and providing examples (e.g., double-quoted table identifiers). Adds restrictions like no semicolons, use LIMIT. Slightly above 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?
Clearly states it executes a SQL query on Baselight and waits for results, specifying the verb 'Execute' and resource 'SQL query'. Distinguishes from sibling tools like sdk-get-results by describing polling and pagination behavior.
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?
Explicitly tells when to use this tool vs alternatives: if query pending, use sdk-get-results; for more rows, use sdk-get-results with offset. Also provides specific syntax constraints (DuckDB, SELECT only, no semicolons, use LIMIT).
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 declare readOnlyHint=true and openWorldHint=true, indicating safe read and unbounded results. The description adds value by explaining dataset format (@username.dataset), public/private access, and that it returns datasets. 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?
Three sentences: first states purpose, second adds dataset format and access, third gives usage context. No unnecessary words, front-loaded, efficient.
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 search tool with 3 well-documented parameters and no output schema, the description covers key aspects: purpose, naming convention, access control, and usage step in workflow. Missing details on output format, but given readOnlyHint and openWorldHint, it is reasonably complete.
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 description coverage is 100%, so baseline is 3. The description mentions 'text query and filters' but does not elaborate beyond what the schema already provides for each parameter. The added context about dataset naming is not parameter-specific.
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 verb 'search' and resource 'catalog for datasets'. It adds context about dataset naming format and access, but does not explicitly differentiate from sibling tool 'baselight_search_tables', which likely targets tables. Implicitly distinguishes by specifying datasets.
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 clear usage context: 'typically the first step in the discovery workflow'. This indicates when to use it. However, it does not explicitly state when not to use it or mention alternative sibling tools like 'baselight_search_tables'.
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 indicate readOnlyHint=true and openWorldHint=true. The description adds context about table format ('@username.dataset.table') and search scope (public and user's private datasets). This explains the data coverage beyond the 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 concise with three sentences. The first states purpose, the second explains format and scope, and the third guides usage. No unnecessary details.
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 search tool with 3 parameters and no output schema, the description explains search scope, table format, and when to use it. It lacks details about the response format but is adequate for an agent to 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 description coverage is 100%, so the schema already provides good parameter descriptions. The description adds context about table format and datasets but does not enhance parameter meaning beyond what is in the schema.
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's purpose: 'Search for tables using a text query and filters.' It specifies the search scope (all public datasets and user's private datasets) and distinguishes from dataset search by suggesting use when datasets are not 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?
The description provides a clear use case: 'Search for tables directly when you are unable to find relevant datasets.' It explains that tables are grouped into datasets and which datasets are searchable. While it doesn't explicitly exclude scenarios, the context is sufficient for an agent to decide when to use this tool.
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!