Radix Wiki
Server Details
Community-maintained knowledge base for Radix DLT — search, read, and contribute wiki pages.
- 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.1/5 across 9 of 9 tools scored. Lowest: 3.2/5.
Each tool targets a distinct resource and action: create/edit/get for individual pages, list/search/full_corpus for different read paths, and categories/ideas_board/recent_changes for metadata views. No two tools appear to overlap in purpose.
All tool names follow a consistent verb_noun snake_case pattern, using clear verbs like create, edit, get, list, and search. The naming is uniform and predictable across the entire set.
With 9 tools, the server is well-scoped for a wiki domain. Each tool covers a distinct user need without redundancy, and the count sits comfortably in the ideal range.
The set covers create, edit, and multiple read operations (get page, list pages, search, full corpus), but lacks a delete_page tool. This is a minor gap, as core workflows are otherwise fully represented.
Available Tools
9 toolscreate_pageAInspect
Create a new Radix Wiki page. Requires a ROLA bearer token — see https://radix.wiki/AGENTS.md for the challenge-sign-verify flow. Call get_categories first for a valid tagPath. Some paths are balance-gated (blog needs 50,000 XRD). Earns contribution points.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | URL slug (derived from the title when omitted) | |
| title | Yes | Page title | |
| content | Yes | Array of typed blocks. Each needs a unique `id` (UUID) and a `type`. A `content` block carries semantic HTML in `text`; an `infobox` block carries nested `blocks`. Start with an infobox, hyperlink every assertion to its source, no inline styles. | |
| tagPath | Yes | Tag path the page lives under (e.g. "contents/tech/core-concepts") | |
| metadata | No | Key-value metadata for the page, including `excerpt` (one sentence, ≤160 chars). Some tag paths require specific keys — the error names any that are missing. | |
| bannerImage | No | Banner image URL |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the disclosure burden. It reveals auth prerequisites, path-specific balance gates, and the side effect of earning contribution points. It does not describe return values or all possible side effects, but these details go well beyond a generic create statement.
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 dense sentences, zero filler. The purpose is front-loaded, and each additional sentence contributes a distinct actionable detail: auth, category retrieval, and balance gating/points.
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 complexity (nested content blocks, auth flow, balance gates), the description covers critical operational context. The schema handles the parameter structure. It lacks an explicit statement about return value/response, but the description already includes outcome ('earns contribution points') and prerequisites.
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 baseline is 3. The description adds value by advising that tagPath should come from get_categories and that some paths are balance-gated, which aids parameter selection without repeating schema text.
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 begins with a specific verb and resource: "Create a new Radix Wiki page." This clearly distinguishes from siblings like edit_page and get_categories by framing creation of a new page.
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 concrete usage context: requires a ROLA bearer token, instructs to call get_categories first for a valid tagPath, and notes balance-gated paths. It does not explicitly name alternatives like edit_page for existing pages, but the 'new' qualifier implies the distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_pageAInspect
Edit an existing Radix Wiki page. Requires a ROLA bearer token — see https://radix.wiki/AGENTS.md. Fetch the page with get_page first and send the full revised block array; the version bump, block-level diff, and revision entry are computed server-side. Locked and author-only pages are rejected. Earns contribution points.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug of the page to edit | |
| title | No | New title | |
| content | No | The full revised block array (not a patch). Omit to change only the title or metadata. | |
| tagPath | Yes | Tag path of the page to edit | |
| metadata | No | Replacement metadata object | |
| revisionMessage | No | What changed and why — shown in the page history. Always send one. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses the tool's behavior: requires a ROLA bearer token, computes version bump/diff/revision server-side, rejects locked/author-only pages, and earns contribution points. It also clarifies that content is a full array, not a patch, which is critical behavioral nuance.
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?
Four sentences, each carrying distinct value: purpose, auth, workflow, restrictions/side effects. The description is front-loaded with 'Edit an existing Radix Wiki page' and contains no filler.
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 all essential aspects for an edit tool: authentication, prerequisite fetch, data semantics, server-side behavior, restrictions, and side effects (contribution points). Despite no output schema, the description provides enough context 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 descriptions cover all parameters, so baseline is 3. The description adds meaningful semantics beyond the schema by specifying that 'content' must be the full revised block array (not a patch) and that omitting it changes only title or metadata. This extra context elevates the score.
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 opens with a specific verb and resource: 'Edit an existing Radix Wiki page.' This clearly distinguishes it from sibling tools like create_page and get_page by emphasizing 'existing' and the edit action.
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 workflow guidance: 'Fetch the page with get_page first and send the full revised block array.' It also states failure conditions ('Locked and author-only pages are rejected') and implies when not to use it (existing pages only). This is exemplary usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_categoriesAInspect
Get the wiki tag hierarchy with page counts per category. Useful for understanding what content exists, and for finding a valid tagPath before writing.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosing behavior. The verb 'Get' clearly implies a read-only operation, and the description adds that it returns a hierarchy with page counts. It does not explicitly say 'does not modify data,' but the read-only nature is evident from the wording.
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 two sentences with no wasted words. It front-loads the main function ('Get the wiki tag hierarchy with page counts') and then adds a concise usage note.
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 tool is simple (no parameters) and the description explains both what is returned and why it is useful. Given the absence of an output schema, describing the result as 'hierarchy with page counts' is sufficient for an agent to select and use 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?
The input schema has zero parameters, so the baseline is 4. The description adds no parameter-specific information because none exists, but it does mention tagPath in the usage context, which helps the agent understand how the output may be used.
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 the wiki tag hierarchy with page counts per category. This specific verb+resource combination distinguishes it from sibling tools like list_pages or search_wiki, which serve different purposes.
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 when this tool is useful: for understanding existing content and finding a valid tagPath before writing. This gives clear application context and connects to write operations like create_page/edit_page.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_full_corpusAInspect
Return the entire Radix Wiki as a single text document. Use for comprehensive context or bulk ingestion.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It discloses that the output is a single text document and implies a read-only operation. However, it does not mention potential size concerns, performance implications, or any access constraints, leaving some behavioral gaps.
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 short sentences: the first immediately states the main action, the second adds a usage note. Every word earns its place; no 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?
For a zero-parameter read-only tool, the description fully covers what it does and the output format ('single text document'). No output schema exists, but the description sufficiently explains the return value.
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 tool has 0 parameters, which sets a baseline of 4. No parameter descriptions are needed, and this is fully represented.
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 action ('Return') and the specific resource ('entire Radix Wiki') with format ('single text document'). This distinguishes it from sibling tools like get_page (single page) and search_wiki (filtered results).
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 an explicit use case: 'Use for comprehensive context or bulk ingestion.' This implies when to use, but does not explicitly contrast with alternatives or state when not to use, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ideas_boardAInspect
Get the RADIX Wiki Ideas Pipeline kanban — community proposals and Radix DAO tasks grouped into status columns (Discussion → Proposed → Approved → In Progress → Testing → Done), each card carrying its working group, category, priority, and assignee. Use this to follow DAO / project progress.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter to one category: Governance, Protocol, Tooling, Ecosystem, or Community | |
| workingGroup | No | Filter by working group name substring, e.g. "Treasury", "Legal", "NetOps" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses the board structure (status columns, card attributes) and the type of content (community proposals and Radix DAO tasks). It does not mention pagination or exact return shape, but for a read-only kanban view this is reasonable and non-misleading.
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 two sentences and packs the essential information: the tool's subject, the pipeline stages, card metadata, and the intended use case. Every clause adds value and there is no fluff or repetition.
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 read tool with two optional, well-documented parameters and no output schema, the description explains the returned data composition well enough. It could mention that results are filtered by parameters or whether the board is returned as a whole, but the provided context is sufficient for most invocations.
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 input schema already fully documents both parameters ('category' and 'workingGroup'). The description mentions 'working group' and 'category' as card attributes, subtly reinforcing the filter semantics, but it does not add technical detail beyond the schema. 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 uses a specific verb ('Get') and names a clear resource ('RADIX Wiki Ideas Pipeline kanban'), elaborating the status columns and card fields. It is clearly distinct from sibling tools like search_wiki or list_pages, which serve general retrieval.
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 follow DAO / project progress,' giving a clear use case. It does not mention when not to use it or name alternatives, but the context is enough to guide selection among the sibling read tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pageAInspect
Fetch the full text content of a specific Radix Wiki page.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Page slug (e.g. "utxo-model") | |
| tagPath | Yes | Tag path (e.g. "contents/tech/core-concepts") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates a read-only operation that returns the page's full text content, which is useful. With no annotations, however, it does not disclose potential errors, permissions, or the exact shape of the response beyond 'full text'.
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 a single, direct sentence with no unnecessary words. It is appropriately sized for a simple fetch operation and front-loads the key action and resource.
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 low-complexity tool with two well-documented parameters, the description plus schema is mostly sufficient. It clearly states the return value (full text content), but it omits any mention of not-found behavior or alternatives, and there is no output schema to further clarify the response.
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 input schema already has 100% coverage for both parameters (tagPath and slug) with clear examples. The description adds no additional parameter semantics, so the baseline score of 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 uses the specific verb 'Fetch' and identifies the resource as 'full text content of a specific Radix Wiki page'. This clearly distinguishes it from sibling tools like list_pages, search_wiki, and get_categories.
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 usage context is implied: use this tool when you need a specific page's full text and have the required tagPath and slug. However, there is no explicit guidance on when to prefer this over alternatives like search_wiki or list_pages, nor any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recent_changesBInspect
Get recently updated wiki pages. Useful for monitoring new content.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 7, max 30) | |
| limit | No | Max results (default 20, max 50) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'Get', implying a read operation, but gives no details about auth requirements, rate limits, response format, or default behavior. This is insufficient for a tool with zero 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?
The description is two short sentences, front-loaded with the core purpose, and the second sentence adds a relevant use case without fluff. Every word earns its place.
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?
With no output schema and no annotations, the description should explain what the tool returns and how it differs from siblings like list_pages or get_full_corpus. It only states 'recently updated wiki pages' without describing the result format or clarifying its comparative niche, leaving significant gaps for an agent.
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%, with both days and limit having meaningful descriptions in the schema. The tool description itself does not mention parameters or add any extra meaning, so it stays at the baseline of 3.
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 action and resource: 'Get recently updated wiki pages.' The phrase 'recently updated' distinguishes this from siblings such as list_pages or get_page, making the purpose specific and unambiguous.
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 an implied use case ('Useful for monitoring new content') but does not explicitly state when to use this tool versus alternatives like search_wiki or list_pages. There is no exclusion or comparison, so the guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_pagesBInspect
List Radix Wiki pages, optionally filtered by tag path.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1) | |
| sort | No | Sort order (default "updatedAt") | |
| tagPath | No | Filter by tag path prefix (e.g. "developers") | |
| pageSize | No | Results per page (default 20, max 100) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral traits. It only states the basic listing action and optional tag filter; it does not mention pagination, sorting defaults, result shape, or whether it returns summary vs full content. The read-only nature is implied but not explicit.
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 a single, efficiently worded sentence that front-loads the action and object. Every word is functional, with no filler or redundant phrasing.
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?
Despite the schema covering parameters, the description lacks key operational details such as pagination behavior, sort options, and result composition. With no output schema or annotations, this leaves the tool's behavior under-specified for an agent.
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 schema covers all 4 parameters with descriptions (100% coverage). The description adds the word 'optionally' regarding tagPath, confirming it's not required, but does not enhance understanding of the other parameters. 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 uses the specific verb 'List' and identifies the resource as 'Radix Wiki pages', clearly distinguishing it from sibling tools like get_page (single page retrieval) and search_wiki (full-text search). Mentioning the optional tagPath filter adds scope precision.
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 no guidance on when to use list_pages versus alternatives such as search_wiki, get_page, or get_full_corpus. No exclusions or preferred contexts are stated, leaving the agent without decision criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_wikiAInspect
Search Radix Wiki pages by keyword. Matches against titles and content. Returns titles, URLs, snippets, and update dates.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1) | |
| query | Yes | Search term (matched against page titles) | |
| tagPath | No | Limit results to a tag path (e.g. "contents/tech/core-concepts") | |
| pageSize | No | Results per page (default 20, max 50) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility. It discloses that matches occur against titles and content and that results include specific fields, providing meaningful behavioral insight. It does not explicitly state read-only, but search inherently implies no side effects.
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 two sentences, front-loaded with the primary action ('Search Radix Wiki pages by keyword'), followed by concise specifics. Every word adds value with no 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?
For a search tool, the description covers purpose, match criteria, and return fields. Pagination is documented in the schema, so it doesn't need repeating. It lacks ordering or pagination edge-case details, but these are not critical for basic 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%, so baseline is 3. The description adds a critical semantic detail: matching also applies to content, not just titles as the schema's query description suggests. It also lists return fields, enriching understanding of what the tool produces.
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 wiki pages by keyword, specifies match targets (titles and content), and lists return fields (titles, URLs, snippets, update dates). This distinguishes it from sibling tools like list_pages and get_page, which are not search-focused.
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 clear context for when to use this tool (keyword-based search) but does not explicitly mention alternatives or exclusions. However, the sibling tools are available, and the action verb 'search' makes the intended use unambiguous.
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!
Related MCP Servers
- AlicenseBqualityCmaintenanceCollaborative astronomy wiki built by AI agents worldwide. Read pages, propose edits, vote on proposals, ask astronomy questions via RAG, and explore the knowledge graph.Last updated92MIT
- FlicenseAqualityCmaintenancePublic, agent-searchable knowledge base about AI-native software development, served as an MCP server with tools to search, read, and list topics.Last updated3
- AlicenseBqualityBmaintenanceEnables AI agents to read and write structured, human-verified wiki knowledge inside a project repo, providing reliable context without interfering with the AI's reasoning.Last updated271MIT
- Flicense-qualityCmaintenanceLocal-first, durable knowledge-card RAG for Codex, enabling search, retrieval, and maintenance of reusable experience cards.Last updated