Skip to main content
Glama
digiti

teamhood-mcp

Official
by digiti

Vrije GET-oproep

teamhood_raw_get

Perform a read-only GET on any Teamhood API path, useful when an endpoint has a different name. No write operations are possible.

Instructions

Voert een GET uit op een willekeurig pad van de Teamhood API. Bedoeld als noodklep wanneer een endpoint anders heet in jouw omgeving. Alleen lezen: schrijven is in deze server niet mogelijk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPad na /api/v1, bijvoorbeeld /items of /workspaces.
queryNoOptionele querystring-parameters als object.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

There are no annotations, so the description carries the full burden. It explicitly states the tool is read-only and that writes are impossible, which is useful safety information. However, it does not mention error behavior, authentication constraints, or the shape of the returned data for a raw arbitrary path.

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?

Two short, front-loaded sentences. The key information (arbitrary GET, fallback purpose, read-only guarantee) is delivered immediately with no filler.

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?

For a raw passthrough tool, the description covers purpose, scope, and the critical read-only safety property. The absence of an output schema is acceptable for a raw HTTP GET, though a note about unprocessed/raw responses would make it fully complete.

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?

Schema coverage is 100%, so the baseline is 3. The description adds the base-path example ('/api/v1') and an example path value, but this largely mirrors the schema descriptions rather than adding new meaning.

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 states a specific verb ('executes a GET') and a specific resource scope ('arbitrary path of the Teamhood API'), and frames the tool as an emergency fallback, which clearly distinguishes it from the named sibling tools for specific endpoints.

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

Usage Guidelines4/5

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

It explicitly says this is meant as an emergency valve when an endpoint has a different name in your environment, giving a clear condition for when to use it over the standard tools. It does not name a specific sibling alternative, but the intent is clear enough for an agent to make a selection.

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