Skip to main content
Glama
geoffwhittington

SD Elements MCP Server

get_application

Retrieve detailed information about a specific application using its ID, including optional fields and expansions for comprehensive insights.

Instructions

Get detailed information about a specific application

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
application_idYesThe ID of the application to retrieve
expandNoFields to expand (comma-separated)
includeNoAdditional fields to include (comma-separated)

Implementation Reference

  • The core handler function implementing the 'get_application' tool logic. Decorated with @mcp.tool() for automatic registration and schema inference in the FastMCP framework. Fetches application data via API client and returns JSON.
    @mcp.tool()
    async def get_application(ctx: Context, application_id: int, page_size: Optional[int] = None, include: Optional[str] = None, expand: Optional[str] = None) -> str:
        """Get details of a specific application"""
        global api_client
        if api_client is None:
            api_client = init_api_client()
        params = build_params({"page_size": page_size, "include": include, "expand": expand})
        result = api_client.get_application(application_id, params)
        return json.dumps(result, indent=2)
  • Import of the tools package in the main server file, which cascades to import and register all tools including get_application.
    from . import tools  # noqa: F401
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 of behavioral disclosure. It states this is a read operation ('Get'), implying it's non-destructive, but doesn't mention authentication requirements, rate limits, error handling, or what the response format looks like (e.g., JSON structure). For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves beyond basic retrieval.

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 a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action ('Get detailed information'), making it easy to parse. Every part of the sentence earns its place by clarifying the scope ('about a specific application'), and there's no redundancy or fluff.

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

Completeness2/5

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

Given the complexity of a retrieval tool with 3 parameters and no output schema, the description is incomplete. It lacks details on what 'detailed information' includes, how parameters like 'expand' and 'include' modify the response, and any behavioral aspects like error cases. Without annotations or an output schema, the description should provide more context to help an agent use the tool effectively, but it falls short.

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 input schema has 100% description coverage, with clear documentation for all three parameters ('application_id', 'expand', 'include'). The description adds no additional meaning beyond what the schema provides—it doesn't explain what 'expand' or 'include' fields might be, their typical values, or how they affect the output. With high schema coverage, the baseline score of 3 is appropriate as the schema does the heavy lifting.

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

Purpose3/5

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

The description states the verb ('Get') and resource ('detailed information about a specific application'), which is clear but vague about what 'detailed information' entails. It distinguishes from siblings like 'list_applications' by focusing on a single application, but doesn't specify what makes it different from 'get_project' or 'get_user' in terms of data returned. The purpose is understandable but lacks specificity about the nature of the information retrieved.

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 prerequisites (e.g., needing an application ID), when not to use it (e.g., for listing multiple applications), or direct comparisons to siblings like 'list_applications' for bulk retrieval or 'update_application' for modifications. Usage is implied by the name and description alone, with no explicit context or exclusions provided.

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

Install Server

Other Tools

Related Tools

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/geoffwhittington/sde-mcp'

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