Skip to main content
Glama
tonkabits
by tonkabits

create_service

Add a new upstream service to the N33RD platform by providing its name and base URL, enabling proxy requests through it.

Instructions

Add a new upstream service to proxy requests through

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesService name
base_urlYesBase URL for the service
descriptionNoService description

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
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 discloses that a new service will be added, but gives no behavioral details such as duplicate-name handling, validation rules, required permissions, or side effects beyond creation.

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?

A single, front-loaded sentence that states the action and purpose with no filler. It earns its place without redundancy.

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?

The description plus schema is sufficient for a simple three-field creation call, and no output schema means return-value details are not formally needed. However, it lacks explicit alternative-tool routing and behavioral notes (e.g., duplicate handling), which keeps it from being 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 description coverage is 100%, so the schema already documents all three parameters. The description's phrase 'proxy requests through' adds a small amount of context about base_url, but does not go beyond the schema baseline.

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 uses a specific verb ('Add') and names the resource ('upstream service'), and clarifies the purpose ('to proxy requests through'). It is immediately distinguishable from siblings like update_service and list_services.

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 word 'new' implies this tool is for creating services rather than modifying existing ones, but no explicit when-to-use/when-not-to-use guidance or alternative tools are mentioned. The usage context is implied from the verb rather than stated.

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