glama-status-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@glama-status-mcpshow fleet score summary"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
glama-status-mcp
Daily-refreshed Glama score tracker for the sandraschi fleet. Scrapes per-tool TDQS grades from glama.ai, stores in SQLite, surfaces via MCP tools and a web dashboard. Tracks deltas between snapshots, generates daily reports, and flags stale repos needing rescan.
Quickstart
just install
just web # HTTP backend on :11072
just web-frontend # Vite dev on :11073
just web-dev # Full stack
just refresh # Manual scrape + snapshotRelated MCP server: mcp-federated-data
MCP Tools
Tool | Purpose |
| Portmanteau: list, get, worst_tools, refresh, history, staleness, report, deltas |
| Compact grade distribution and per-repo stats |
| Full markdown report with deltas, worst tools, stale repos |
Web Dashboard
Route | Description |
| Sortable fleet score table |
| All repos with per-tool breakdowns |
| Single repo tool breakdown |
| Full daily report JSON |
| Score changes since last snapshot |
| Trigger rescrape + snapshot |
| Lowest-scoring tools fleet-wide |
How it works
Scraper fetches
glama.ai/mcp/servers/{author}/{repo}/scorepagesParser extracts per-tool grades, 6 TDQS dimension scores, coherence, and maintenance data
SQLite stores current scores + snapshot history for delta tracking
Daily refresh via Scheduled Task or
just refreshcreates a new snapshotDelta engine compares latest two snapshots to show changes
Scored repos (10 of 35 registered on Glama)
Repo | Grade | Score | Tools |
blender-mcp | C | 2.70 | 67 |
windows-operations-mcp | B | 3.00 | 17 |
virtualization-mcp | B | 3.06 | 9 |
worldlabs-mcp | B | 3.38 | 20 |
robotics-mcp | A | 3.58 | 8 |
bumi-mcp | A | 3.64 | 2 |
xkcd-mcp | A | 3.67 | 6 |
cursor-mcp | A | 3.80 | 6 |
steam-mcp | A | 3.81 | 14 |
email-mcp | A | 3.82 | 10 |
25 more registered on Glama but not yet analyzed (page exists, no tools).
Scoring (Glama TDQS)
Dimension | Weight | Description |
Purpose Clarity | 25% | First sentence states what the tool does |
Usage Guidelines | 20% | When to / not to call, preconditions |
Behavioral Transparency | 20% | Returns, side effects, error conditions |
Parameter Semantics | 15% | Every param: type, values, what it affects |
Conciseness & Structure | 10% | Not a wall of text, not a one-liner |
Contextual Completeness | 10% | Enough context to use without reading source |
Server-level = 60% mean + 40% minimum - one bad tool pulls the whole score down.
Ports
Backend (FastAPI + MCP HTTP): 11072
Frontend (Vite dev): 11073
Available Tools
7 toolsglama_agentic_analyzeB
Analyze Glama scores with LLM sampling and generate fixable todos.
Uses the connected LLM (via MCP ctx.sample) to intelligently analyze a repo's tool docstring scores and produce actionable fix tasks.
| Name | Required | Description | Default |
|---|---|---|---|
| repo_name | No | Fleet repo name to analyze, or empty for fleet-wide. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool uses LLM sampling via MCP ctx.sample, which implies it may have latency or cost implications. However, it does not clarify if the tool is read-only or creates persistent data, and no safety or permission details are given. Annotations are empty, so the description carries full burden.
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 two sentences. The first sentence captures the core purpose, and the second adds an important implementation detail. No superfluous content.
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 existence of an output schema, the description appropriately omits return value details. It mentions the use of MCP ctx.sample, which is critical context. However, it could briefly note prerequisites (e.g., need for a connected LLM) or how results are presented.
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 tool description adds no new meaning beyond what the schema already provides for the single parameter 'repo_name'. The schema already explains the parameter, so the tool description does not enhance understanding.
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 analyzes Glama scores using LLM sampling and generates fixable todos. This distinguishes it from sibling reporting tools like glama_daily_report or glama_scores_summary, which likely provide summaries without analysis or task generation.
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?
No guidance is provided on when to use this tool versus alternatives like glama_daily_report or glama_generate_reports. The description does not mention use cases, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glama_daily_reportA
Generate daily fleet health report.
Includes grade distribution, recent changes, worst tools, stale repos. When to use: once daily for comprehensive fleet Glama score overview. When NOT to use: for single repo details use glama_status(get). Preconditions: at least one refresh must have been run.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | "markdown" or "json". Default "markdown". | markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so description carries full burden. It describes generating a report, typical of a read-only operation, but does not explicitly state whether the tool is non-destructive or has side effects. The precondition is useful, but more transparency about behavioral traits (e.g., read-only) is needed.
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 efficient with three sentences plus a list. It is front-loaded with purpose and contents, followed by usage guidelines. Each sentence earns its place, though the structure is slightly fragmented.
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 tool with one optional parameter and an output schema, the description covers purpose, contents, usage conditions, and preconditions. It is complete enough for an agent to use correctly without needing additional context.
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% for the single parameter 'format', which already provides a clear description. The tool description does not add any additional parameter semantics beyond what is in the schema, so 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 generates a daily fleet health report and lists its contents (grade distribution, recent changes, worst tools, stale repos). It distinguishes from sibling tools by explicitly stating when not to use (for single repo details use glama_status).
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 ('once daily for comprehensive fleet Glama score overview'), when NOT to use ('for single repo details use glama_status'), and lists a precondition ('at least one refresh must have been run'). This provides excellent guidance for an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glama_generate_reportsA
Generate markdown analysis reports for repos.
Creates per-repo fix-todo reports in the reports/ directory, suitable for ingestion by IDE LLMs. If repo_name is empty, generates reports for all scored repos.
| Name | Required | Description | Default |
|---|---|---|---|
| repo_name | No | Optional. If set, generate only for that repo. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses the side effect of creating files in reports/ and the conditional behavior for all repos, but lacks details on overwriting behavior, concurrency, or permissions.
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 with front-loaded purpose, no redundant information, and clear structure: purpose, details, conditional behavior.
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 an output schema exists and one parameter with 100% schema coverage, the description covers the main behavior and parameter effect. Lacks guidance on choosing between sibling tools, but otherwise 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?
The schema describes the parameter as optional with a default, and the description adds the crucial context that an empty value triggers generation for all scored repos, enhancing understanding beyond the schema alone.
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 generates markdown analysis reports for repos, specifying output format (markdown) and directory (reports/). However, it does not explicitly distinguish from sibling tools like glama_daily_report or glama_scores_summary.
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 guidance on when to use the repo_name parameter (empty generates all scored repos) but doesn't advise on when to use this tool vs alternatives like glama_daily_report.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glama_scores_summaryB
Return compact fleet-wide score summary.
Grades per repo and count per grade bucket. Returns: success, grade_distribution, repos, count, message.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should disclose behavioral traits. It only lists output fields but does not explain real-time behavior, authentication needs, or error conditions.
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?
Extremely concise: one sentence stating purpose and a line listing outputs. 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?
For a no-parameter tool with an output schema, the description sufficiently explains what is returned. However, lacks context on when to invoke.
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, and schema coverage is 100%. The description adds no parameter info, but baseline is 4 since no parameters need explanation.
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 returns a compact fleet-wide score summary and lists output fields. However, it does not differentiate from sibling tools like glama_agentic_analyze or glama_generate_reports.
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?
No guidance on when to use this tool versus alternatives. The description only states what it does, not when or why to choose it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glama_statusA
Fleet-wide Glama score tracker -- query per-tool TDQS grades.
Identifies worst-scoring tools, trigger rescans. When to use: check fleet repo Glama scores, find tools needing docstring fixes, or trigger a refresh. When NOT to use: for code diagnostics use the repo's own tools; for Glama submission/review use glama.ai directly. Preconditions: repo must have been submitted to Glama and scored.
Operations:
list: All repos, worst-first.
get: Per-tool breakdown for one repo (repo_name required).
worst_tools: Lowest-scoring tools fleet-wide.
refresh: Rescrape all fleet repos + snapshot.
history: Recent refresh log entries.
staleness: Repos >7d since last scrape.
report: Full daily status report.
deltas: Score changes between last two snapshots.
add_repo: Add a repo to track (name, optional author/slug).
remove_repo: Stop tracking a repo.
reload_config: Reload fleet-repos.json config file.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results. Default 50, max 200. | |
| operation | Yes | One of: list, get, worst_tools, refresh, history, staleness, report, deltas. | |
| repo_name | No | Required for get. e.g. "virtualization-mcp". |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description carries the full burden. It details each operation (list, get, worst_tools, refresh, etc.) and mentions preconditions, but does not explicitly state side effects or mutability. While it covers the purpose of operations like 'refresh' (rescrape) and 'add_repo' (add a repo), it lacks explicit disclosure of whether operations are destructive or require special permissions. However, the level of detail provided is sufficient for basic understanding, warranting a score of 4.
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 front-loaded with a clear summary, followed by structured sections for usage guidance, preconditions, and operations. It is well-organized but slightly lengthy due to the detailed operation list. Every sentence adds value, and the structure aids readability. It could be slightly more concise, but it's effective.
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 (multiple operations, 3 parameters, no annotations, and an output schema), the description covers key aspects: when to use, operations, preconditions, and parameter roles. It does not explain return values, but the presence of an output schema mitigates this. The description is sufficiently complete for an agent to understand 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% (all parameters described in input schema), but the description adds value by listing all operations beyond the schema's description, which omits 'add_repo', 'remove_repo', and 'reload_config'. The description clarifies the meaning of each operation and the context for 'repo_name' (required for get). It compensates for the schema's incompleteness, adding meaningful context for parameter usage.
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 as a 'Fleet-wide Glama score tracker -- query per-tool TDQS grades.' It lists specific operations and distinguishes from siblings by specifying when to use (fleet scores, docstring fixes, refresh) and when not to use (code diagnostics, submission/review). The verb 'query' and resource 'Glama scores' are explicitly defined, and the tool is differentiated from siblings like 'glama_scores_summary' and 'show_glama_repo_card' through usage guidance.
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 includes explicit 'When to use:' and 'When NOT to use:' sections. It provides clear context for appropriate use: checking fleet scores, finding tools needing docstring fixes, triggering a refresh. It also specifies when not to use: for code diagnostics use repo's own tools, for submission/review use glama.ai. Additionally, it mentions preconditions (repo must have been submitted and scored), offering comprehensive guidance for agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_glama_repo_cardA
Show per-repo Glama score breakdown as a rich Prefab card.
Displays overall grade, TDQS scores, coherence dimensions, maintenance grade, and per-tool scores for a single repo.
| Name | Required | Description | Default |
|---|---|---|---|
| repo_name | Yes | Fleet repo name (e.g. "email-mcp"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries the full burden. It describes a read-only operation ('shows', 'displays') and lists the data categories. No mention of side effects or limitations, but the behavior is clear enough for a display tool.
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, no wasted words. The first sentence states the main action and output format; the second lists details. Efficiently 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 tool with one parameter and no output schema, the description covers what the tool does and what it returns (TDQS, grades, per-tool scores). It is sufficient for an agent to understand the tool's purpose.
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 for the only parameter. The description adds that it is 'per-repo' and 'for a single repo', reinforcing the parameter meaning but not adding substantial new info beyond 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 shows 'per-repo Glama score breakdown as a rich Prefab card' and lists what is displayed. This distinguishes it from siblings like 'glama_scores_summary' which likely covers multiple repos.
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 implies use when needing a specific repo score breakdown, but does not explicitly state when to use or not use, nor mention alternatives. Given siblings, clearer guidance would help.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_glama_status_cardA
Show fleet Glama score overview as a rich Prefab card.
Displays grade distribution, per-repo scores (worst first), worst tools across the fleet, and stale repos in a structured dashboard card suitable for in-chat viewing.
Return Format
ToolResult with PrefabApp card and plain-text fallback.
Examples
await show_glama_status_card()
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions return format (ToolResult with PrefabApp card and plain-text fallback) but does not disclose behavioral traits such as read-only nature, idempotency, or any side effects. No reference to authentication or data freshness is made.
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 brief, front-loaded with purpose, followed by content list, return format, and example usage. Every sentence adds value without 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 parameterless tool with no output schema, the description covers purpose, displayed information, and return format. It lacks mention of error cases or prerequisites (e.g., authentication), but is sufficient for a simple status card.
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 schema coverage is 100%. Description adds no parameter info as there are none, but baseline 4 is appropriate since the schema already covers everything.
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?
Explicitly states it shows fleet Glama score overview as a Prefab card, listing specific displayed content (grade distribution, per-repo scores, worst tools, stale repos). Clearly distinguishes from sibling tools like show_glama_repo_card (single repo) and glama_status (text status).
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?
Description implies usage for fleet-wide overview via 'Show fleet Glama score overview' and provides examples. However, no explicit when-not-to-use or alternative guidance is given. In context of siblings, the purpose is clear but not formally stated.
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.
7 tool updates
v0.1.0- First observed
glama_agentic_analyze - First observed
glama_daily_report - First observed
glama_generate_reports - First observed
glama_scores_summary - First observed
glama_status - First observed
show_glama_repo_card - First observed
show_glama_status_card
TDQS
Scored across 7 tools
Some overlap exists between dedicated report tools (glama_daily_report, glama_scores_summary) and the glama_status tool which has its own 'report' and 'list' operations. Descriptions try to clarify, but an agent might struggle to choose the correct tool for a given task.
All tools follow a consistent 'glama_<descriptive_name>' pattern in snake_case, with clear verb_noun or descriptive names. There is no mixing of conventions or confusing styles.
With 7 tools, the set is well-scoped for monitoring and analyzing Glama scores. Each tool has a distinct purpose, and the count feels neither too few nor too many.
The set covers analysis, reporting, summary, detailed queries, and rich cards. Missing a direct submission tool is acceptable as it's outside the server's scope. Minor gaps like lacking a bulk update feature are not critical.
Maintenance
Related MCP Connectors
Analytics for MCP servers. Query your tool calls, first-call success, retries and schema cost.
Analytics for MCP servers. Find out which of your tools agents get wrong. MCPulse shows you which tools AI agents retry, which come back empty, and which they never call at all. Two lines inside your own server. It never sees your arguments or your results. getmcpulse.com
Monitor MCP servers, API contracts and AI outputs for schema drift. Alerts on breaking changes.
36 MCP tools for projects, tasks, workers, QR/NFC tags, and AI remediation. Task. Scan. Done.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCPGate aggregates multiple MCP servers into a single unified endpoint, enabling centralized tool management with granular filtering, automatic namespacing, and observability. Features a real-time web dashboard and optional PostgreSQL-backed audit trails for monitoring and controlling AI tool access across local and remote deployments.6 npmApache 2.0
- AlicenseNot gradedqualityDmaintenanceFederated MCP server that joins relational metadata (MySQL) with timeseries values (InfluxDB) behind a single, LLM-friendly entity layer.1MIT
- FlicenseAqualityDmaintenancePersonal habit tracking MCP server for a 90-day mission, tracking 6 non-negotiable habits with Supabase backend, exposes tools for logging and viewing progress.4-
- FlicenseAqualityCmaintenanceA unified MCP server that lets Claude query any SQLite database and build live Streamlit dashboards — all from a single conversation.101-