Cerebrium Docs
Server Details
Search the Cerebrium docs: deployment, cerebrium.toml, hardware, endpoints. Also sends feedback.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
- Repository
- CerebriumAI/cerebrium-skills
- GitHub Stars
- 0
TDQS
Scored across 3 tools
search_cerebrium and query_docs_filesystem_cerebrium both retrieve documentation, but their descriptions draw a clear boundary: semantic/contextual search versus exact/regex filesystem reads. submit_feedback is wholly distinct. Minor overlap remains because query's rg can also search broadly, so an agent might need to choose carefully.
All names are lowercase snake_case and verb-first, but they don't share a uniform object pattern: query_docs_filesystem_cerebrium combines several components while search_cerebrium and submit_feedback are simpler. This is still predictable and readable rather than chaotic.
Three tools cover the core documentation workflow: finding content, reading extracted pages and specs, and reporting doc issues. No redundant tools and no obvious missing category.
The search plus filesystem query pair provides both semantic discovery and exact/structural access to pages and OpenAPI specs, while submit_feedback closes the loop for documentation maintenance. There are no obvious dead ends for documentation use cases.
Available Tools
3 toolsquery_docs_filesystem_cerebriumARead-onlyIdempotentInspect
Run a read-only shell-like query against a virtualized, in-memory filesystem rooted at / that contains ONLY the Cerebrium documentation pages and OpenAPI specs. This is NOT a shell on any real machine — nothing runs on the user's computer, the server host, or any network. The filesystem is a sandbox backed by documentation chunks.
This is how you read documentation pages: there is no separate "get page" tool. To read a page, pass its .mdx path to head or cat — a page at the URL path /some/page lives at /some/page.mdx. To search the docs with exact keyword or regex matches, use rg. To understand the docs structure, use tree or ls.
Paths are specific to this site — never guess them. Discover real paths with tree / -L 2, ls /, or the search tool before reading. If a path does not exist, that only means the guess was wrong; it does NOT mean the topic is undocumented — use rg -il "keyword" / to find where it is covered.
Workflow: Start with the search tool for broad or conceptual queries like "how to authenticate" or "rate limiting". Use this tool when you need exact keyword/regex matching, structural exploration, or to read the full content of a specific page by path.
Supported commands: rg (ripgrep), grep, find, tree, ls, cat, head, tail, stat, wc, sort, uniq, cut, sed, awk, jq, plus basic text utilities. No writes, no network, no process control. Run --help on any command for usage.
Each call is STATELESS: the working directory always resets to / and no shell variables, aliases, or history carry over between calls. If you need to operate in a subdirectory, chain commands in one call with && or pass absolute paths (e.g., cd /some-directory && ls or ls /some-directory). Do NOT assume that cd in one call affects the next call.
Examples (replace the placeholder paths with real ones from tree or search):
tree / -L 2— see the top-level directory layoutrg -il "rate limit" /— find all files mentioning "rate limit"rg -C 3 "apiKey" /some-directory/— show matches with 3 lines of context around each hithead -80 /some/page.mdx— read the top 80 lines of a specific pagehead -80 /page-one.mdx /page-two.mdx /section/page-three.mdx— read multiple pages in one callcat /some/page.mdx— read a full page when you need everythingcat '/openapi/https://s3.eu-west-1.amazonaws.com/www.cerebrium.ai/openapi_spec.json' | jq '.paths | keys'— list OpenAPI endpoints
OpenAPI specs for this site are mounted at: '/openapi/https://s3.eu-west-1.amazonaws.com/www.cerebrium.ai/openapi_spec.json', /openapi/package.json, /openapi/data/training-dataset-example.json. Use them to answer questions about endpoints, request/response schemas, parameters, and authentication.
Output is truncated to 30KB per call. Prefer targeted rg -C or head -N over broad cat on large files. To read only the relevant sections of a large file, use rg -C 3 "pattern" /path/file.mdx. Batch multiple file reads into a single head or cat call whenever possible.
When referencing pages in your response to the user, convert filesystem paths to URL paths by removing the .mdx extension. For example, /some/page.mdx becomes /some/page.
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | A shell command to run against the virtualized documentation filesystem (e.g., `rg -il "keyword" /`, `tree / -L 2`, `head -80 /path/file.mdx`). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already state readOnlyHint=true, openWorldHint=false, idempotentHint=true, and destructiveHint=false. The description adds substantial behavioral context beyond that: the filesystem is a sandbox, each call is stateless with the working directory resetting to `/`, output is truncated to 30KB, there are no writes/network/process control, and missing paths only mean the guess was wrong—not that the topic is undocumented. This fully discloses practical behavioral constraints.
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?
Although long, the description is densely packed with necessary information and is well structured: purpose, path rules, workflow, supported commands, statelessness, examples, OpenAPI mounts, output limits, and response formatting. Every sentence earns its place, and the most critical guidance is front-loaded before examples.
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 shell-like tool with no output schema, this description is exceptionally complete. It covers how to read pages, how to search, how to handle missing paths, stateless behavior, output truncation, OpenAPI spec locations, and even how to convert paths back to URLs when responding to the user. An agent has everything it needs to invoke and interpret 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% for the single `command` parameter, but the description adds enormous semantic value on top of the schema. It enumerates supported commands, gives concrete examples with placeholders, explains path-to-URL conversion, shows how to chain commands with `&&`, and demonstrates use of the mounted OpenAPI specs with `jq`. The parameter gains far more meaning than the schema alone 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 opens with a specific verb and resource: 'Run a read-only shell-like query against a virtualized, in-memory filesystem rooted at `/`' that is explicitly limited to Cerebrium documentation and OpenAPI specs. It clearly distinguishes this tool from the sibling search_cerebrium by framing it as the way to read actual pages, not just search, and even notes there is no separate 'get page' tool.
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 explicit workflow: 'Start with the search tool for broad or conceptual queries' and 'Use this tool when you need exact keyword/regex matching, structural exploration, or to read the full content of a specific page by path.' It also warns against guessing paths and tells the agent to use `tree` or `rg` first, covering both when to use and how to use the tool effectively.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_cerebriumSearch documentationARead-onlyIdempotentInspect
Search across the Cerebrium knowledge base to find relevant information, code examples, API references, and guides. Use this tool when you need to answer questions about Cerebrium, find specific documentation, understand how features work, or locate implementation details. The search returns contextual content with titles and direct links to the documentation pages. If you need the full content of a specific page, use the query_docs_filesystem tool to head or cat the page path (append .mdx to the path returned from search — e.g. a result at /some/page is read with head -200 /some/page.mdx).
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query | |
| version | No | Filter to specific version (e.g., 'v0.7') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds valuable behavioral context: it discloses that search returns only titles and direct links, not full content, and explains how to retrieve full content via a sibling tool. This goes beyond the annotations and helps the agent predict the output 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?
The description is a single paragraph but is well-structured: it opens with the purpose, then usage guidance, then what the search returns, and finally a pointer to the sibling tool. It is slightly long but every sentence adds value, and the critical usage guidance is front-loaded. It is not overly verbose.
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 simple parameters and clear annotations, the description is complete: it states what the tool does, when to use it, what it returns, and how to proceed for full content. It does not describe pagination or result limits, but those are minor and not essential for correct invocation. The output format (titles and links) is sufficient.
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% (both query and version are described in the schema). The description does not add parameter-specific details beyond what the schema provides, so the baseline of 3 is appropriate. The description's mention of the .mdx suffix is not about parameters but about follow-up actions, which is already covered elsewhere.
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 ('Search') and resource ('Cerebrium knowledge base'), and clearly enumerates what it finds (information, code examples, API references, guides). It explicitly differentiates from the sibling query_docs_filesystem by noting that search returns links and not full content, so an agent can immediately distinguish the two tools.
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 to use the tool ('when you need to answer questions about Cerebrium...') and provides a concrete alternative for full content (use query_docs_filesystem to head/cat the page). It even explains the .mdx path convention, leaving no ambiguity about when to switch tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_feedbackSubmit documentation feedbackAInspect
Report a problem with this documentation site so the docs team can fix it. Use when a documentation page is incorrect, outdated, confusing, incomplete, or has a broken example. This is for feedback about the documentation content itself — not for product support requests or feedback about this tool or assistant.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The URL path of the documentation page the feedback is about (the page you were reading, without the `.mdx` extension). | |
| feedback | Yes | A clear description of the documentation issue or suggestion — what is incorrect, outdated, missing, or confusing. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey that this is a write operation (readOnlyHint=false, idempotentHint=false), and the description adds meaningful context: feedback is routed to the docs team and is scoped to documentation content. It stops short of describing what happens after submission (e.g., whether a confirmation is returned, whether it creates an issue), but it does not contradict the annotations and provides useful behavioral framing.
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, all informative. The first sentence states the purpose, the second gives concrete usage criteria, and the third excludes non-documentation feedback. No filler or redundancy; the most important information is front-loaded.
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 two-parameter tool with no output schema, the description and schema together cover the essential information: what to submit, which page, what kind of feedback, and when to use it. The only minor gap is the lack of detail about the post-submission result or confirmation behavior, which is not critical but would make it fully 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%, and the parameter descriptions already explain 'path' (URL path without .mdx extension) and 'feedback' (clear description of the issue). The tool description reinforces the kind of feedback expected but adds no technical semantics beyond the schema, 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 clearly states the tool's function: 'Report a problem with this documentation site so the docs team can fix it.' It identifies the specific resource (documentation site) and the action (reporting a problem), and it distinguishes itself from the sibling query/search tools by being feedback-oriented. It also explicitly carves out what it is not for: product support or feedback about the tool/assistant.
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 when-to-use guidance: 'Use when a documentation page is incorrect, outdated, confusing, incomplete, or has a broken example.' It also provides a clear when-not-to-use boundary: 'not for product support requests or feedback about this tool or assistant.' This is strong, actionable usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
submit_feedback1 field changed- changed
Input schema / properties / path / descriptionPrevious value: -"The documentation page path the feedback is about (e.g., the page you were reading, such as `/quickstart`)."New value: +"The URL path of the documentation page the feedback is about (the page you were reading, without the `.mdx` extension)."
3 tool updates
- First observed
query_docs_filesystem_cerebrium - First observed
search_cerebrium - First observed
submit_feedback
Related MCP Connectors
Search the SiteGPT documentation: setup, features, API reference, troubleshooting.
Search, read, and ask the Nyuchi docs (docs.nyuchi.com); send feedback or raise issues.
Search and read Vector Panda docs: API operations, pricing, storage tiers, measured benchmarks.
Retrieve information from the Medusa documentation to assist you with your Medusa development.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables searching and retrieving Reflex documentation, including full-text search, code examples, error analysis, changelog, migration guides, API reference, component props, and recipes.143MIT
- AlicenseAqualityAmaintenanceProvides access to microCMS documentation, enabling AI assistants to search and retrieve the latest document content.3102 npm8MIT
- AlicenseAqualityBmaintenanceAccess to 819+ documentation sources from devdocs.io with semantic search capabilities.9MIT
- AlicenseNot gradedqualityDmaintenanceSearches OpenSearch documentation, blogs, and community forums.2MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.