Skip to main content
Glama
sigitp-git

Amazon Managed Prometheus MCP Server

by sigitp-git

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: list_workspaces enumerates all workspaces, get_workspace retrieves detailed information, get_workspace_status checks status, and query_metrics executes PromQL queries. There is no overlap or ambiguity between these functions.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern with snake_case: list_workspaces, get_workspace, get_workspace_status, and query_metrics. The naming is predictable and readable throughout.

    Tool Count4/5

    Four tools is reasonable for a focused Prometheus monitoring server, covering core operations like listing, retrieving, checking status, and querying. It might be slightly thin for full CRUD operations, but it aligns well with the server's purpose.

    Completeness3/5

    The tools cover read and query operations effectively, but there are notable gaps in write operations (e.g., create, update, or delete workspaces). This limits agents to monitoring and querying without management capabilities, which could be a constraint for full lifecycle workflows.

  • Average 3.4/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves workspace details but doesn't disclose critical behavioral traits such as required permissions, rate limits, error handling, or whether it's a read-only operation (though implied by 'Get'). This leaves significant gaps for an AI agent to understand how to invoke it safely and effectively.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is well-structured and appropriately sized. It front-loads the purpose in the first sentence, followed by clear sections for Args and Returns. Each sentence earns its place by adding value, with no redundant or verbose language.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's moderate complexity (2 parameters, no annotations, but with an output schema), the description is partially complete. It covers the purpose and parameters adequately, and the output schema handles return values, so the description doesn't need to explain those. However, it lacks behavioral context (e.g., permissions, errors) that would be helpful for safe invocation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The description adds meaningful semantics for both parameters: 'workspace_id' is explained as 'The ID of the workspace to retrieve,' and 'region' as 'AWS region where the workspace is located (default: us-east-1).' This compensates for the 0% schema description coverage by providing clear, actionable context beyond the schema's basic titles and types.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose: 'Get detailed information about a specific Amazon Managed Prometheus workspace.' It uses a specific verb ('Get') and resource ('workspace'), but doesn't explicitly distinguish it from sibling tools like 'get_workspace_status' or 'list_workspaces', which likely provide different types of workspace information.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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 this tool versus alternatives. It doesn't mention sibling tools like 'get_workspace_status' (which might provide status vs. detailed info) or 'list_workspaces' (which might list multiple vs. get one), nor does it specify prerequisites or exclusions for usage.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It mentions the return format ('JSON string') but lacks critical behavioral details like authentication requirements, rate limits, error handling, or whether it's a read-only operation. The description doesn't contradict annotations, but it's insufficient for a tool with no 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.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is appropriately sized and front-loaded, starting with the core purpose. The 'Args' and 'Returns' sections are structured clearly, but the 'Returns' section could be more concise (e.g., 'JSON with workspace status'). Overall, it's efficient with minimal waste.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given no annotations, 0% schema coverage, and an output schema present, the description is moderately complete. It covers purpose and parameters adequately but lacks behavioral context (e.g., auth, errors). The output schema reduces the need to explain return values, but more guidance on usage and transparency would improve completeness for this read operation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics for both parameters: 'workspace_id' is explained as 'The ID of the workspace', and 'region' as 'AWS region where the workspace is located (default: us-east-1)'. This clarifies beyond the schema's basic titles, though it doesn't detail format constraints (e.g., region codes).

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose with a specific verb ('Get') and resource ('current status of an Amazon Managed Prometheus workspace'). It distinguishes from siblings like 'get_workspace' (likely returns different workspace details) and 'list_workspaces' (returns multiple workspaces). However, it doesn't explicitly differentiate from 'query_metrics', which might overlap in context.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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 this tool versus alternatives like 'get_workspace' or 'list_workspaces'. It lacks context such as prerequisites (e.g., needing workspace ID) or exclusions (e.g., not for querying metrics). Usage is implied through parameter descriptions but not explicitly stated.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool executes queries and returns JSON results, but lacks details on error handling, rate limits, authentication requirements, or whether it's read-only or mutating. The description doesn't contradict annotations (none exist), but provides only basic operational context.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is well-structured with a clear purpose statement followed by organized parameter and return sections. Every sentence adds value, though the parameter explanations could be slightly more concise. It's appropriately sized for a 6-parameter tool with technical details.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity (6 parameters, technical query execution) and the presence of an output schema (which handles return values), the description is reasonably complete. It covers the core purpose and parameters well, though it lacks usage context and some behavioral details. The output schema reduces the need to describe return format in the description.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate. It provides clear explanations for all 6 parameters, including format details (RFC3339 for times, examples like '15s' for step), defaults (region: us-east-1), and context (range queries for start/end/step). This adds substantial value beyond the bare schema, though it doesn't fully explain parameter interactions or constraints.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose: 'Execute a PromQL query against an Amazon Managed Prometheus workspace.' It specifies the exact action (execute), technology (PromQL), and target resource (Amazon Managed Prometheus workspace), which distinguishes it from sibling tools that focus on workspace management rather than query execution.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    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 this tool versus alternatives. While it's clear this is for querying metrics, there's no mention of when to use it over other query methods or tools, nor any prerequisites or constraints beyond the parameters listed. This leaves the agent without context for tool selection.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the basic operation (listing workspaces) and return format (JSON string), but doesn't mention important behavioral aspects like pagination, rate limits, authentication requirements, error handling, or whether the operation is read-only (though implied by 'list'). Some useful context is missing.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is perfectly structured and concise with zero waste. It opens with the core purpose, then provides clear Args and Returns sections. Every sentence earns its place by delivering essential information without redundancy or unnecessary elaboration.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's low complexity (single parameter, no nested objects) and the presence of an output schema, the description is reasonably complete. It covers the basic operation, parameter semantics, and return format. However, for a tool with no annotations, it could benefit from more behavioral context about authentication, limits, or error scenarios.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    With 0% schema description coverage and only one parameter, the description adds significant value by explaining the region parameter's purpose ('AWS region to query') and providing the default value ('us-east-1'). This compensates well for the lack of schema descriptions, though it doesn't elaborate on region format constraints or valid values.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('List all Amazon Managed Prometheus workspaces') and resource ('workspaces in the specified region'), distinguishing it from siblings like get_workspace (singular retrieval) and query_metrics (different operation). It uses precise language that leaves no ambiguity about what the tool does.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage by specifying the region parameter, but doesn't explicitly state when to use this tool versus alternatives like get_workspace or get_workspace_status. No guidance is provided about prerequisites, error conditions, or specific scenarios where this tool is preferred over others.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

prometheus-mcp-server MCP server

Copy to your README.md:

Score Badge

prometheus-mcp-server MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sigitp-git/prometheus-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server