Skip to main content
Glama
laurentluce

arcep-eligibility-mcp-server

by laurentluce

get_mobile_eligibilities

Check mobile network eligibility for a French address by providing the street address and town name. Returns mobile telecom options from the ARCEP API.

Instructions

Get mobile eligibilities for an address from the ARCEP API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
townNameYesThe town/commune name (e.g. 'Paris')
streetAddressYesThe street address to look up (e.g. '10 rue de la Paix')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It implies a read-only lookup but does not mention response shape, possible errors, rate limits, authorization, or external API behavior beyond naming ARCEP.

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 with no filler. It front-loads the core purpose and external data source 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?

For a simple two-parameter lookup, the description is minimally viable: it names the resource, source, and required inputs. However, the lack of an output schema and any guidance on response contents or edge cases leaves some uncertainty for an agent.

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%, with both parameters already described clearly in the input schema. The description adds no extra parameter detail, which is acceptable because the schema already carries the semantic weight.

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 action ('Get'), the resource ('mobile eligibilities'), and the data source ('ARCEP API'). It is specific enough to be understood, and the tool name plus 'mobile' distinguishes it from the sibling get_fixed_line_eligibilities, though the description itself does not explicitly contrast them.

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?

No guidance is provided about when to use this tool versus get_fixed_line_eligibilities, nor are there any exclusions or prerequisites. The context is only inferable from the tool name and the word 'mobile'.

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