Skip to main content
Glama

Mano DeAyala AI Gateway

Server Details

MCP gateway for manoforstaterep.com: articles, search and full text. Read-only, no auth.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

6 tools
fetchFetch documentA
Read-onlyIdempotent
Inspect

Retrieve the full text of one document by the id returned from search.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesDocument id from search results

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
textYes
titleYes
metadataNo

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety and side-effect behavior. The description adds that the tool returns full text and expects a search-derived id, but it does not disclose additional behavior beyond what structured annotations already provide.

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 one concise, front-loaded sentence. It communicates the action, the resource, and the input source without any filler or redundancy.

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 single-parameter tool with an output schema and annotations covering safety and idempotency, the description is nearly complete. The only notable gap is the lack of differentiation from the sibling 'get_article', which could create mild selection ambiguity.

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?

Input schema coverage is 100%, with the 'id' parameter already described as 'Document id from search results'. The description similarly mentions the id comes from search, but adds no further semantic detail beyond the schema, so the baseline score of 3 applies.

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 states a specific verb ('Retrieve'), resource ('full text of one document'), and input ('id returned from search'). It clearly distinguishes from search tools, but it does not differentiate from the sibling 'get_article', which may also fetch a document by id.

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 the correct usage sequence: run 'search' first, then use the returned id to fetch the document. However, it does not explicitly state when to choose this tool over the sibling 'get_article' or 'search_articles', so guidance on alternatives is missing.

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

get_articleGet articleA
Read-onlyIdempotent
Inspect

Fetch the full clean text of one article by its slug (the last path segment of an article URL).

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug, e.g. "my-article-title"

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYes
dateNo
slugYes
textNo
titleYes
summaryNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish readOnly, idempotent, and non-destructive behavior. The description adds useful behavioral context by specifying the output is 'full clean text' and explaining how a slug maps to a URL segment, going beyond the structured annotations.

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, focused sentence that leads with the core behavior and immediately clarifies the identifier format. No filler or redundant restating of the tool name.

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

Completeness5/5

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

For a simple, single-parameter, read-only tool with annotations and an output schema, the description covers what the tool does and how the parameter is derived. Nothing essential is missing for an agent to invoke it correctly.

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 coverage is 100% and the schema already gives an example. The description supplements this by explicitly defining a slug as 'the last path segment of an article URL', which clarifies the expected format and makes correct invocation easier.

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?

Describes a specific action ('Fetch the full clean text of one article') on a specific resource identified by slug. The phrase 'full clean text' distinguishes it from generic URL fetching and from list/search siblings that return multiple or partial results.

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 the tool is for retrieving one article when you already have its slug, and the sibling names suggest alternatives like listing or searching. However, it does not explicitly state when not to use this tool or name an alternative, leaving usage partially to inference.

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

list_recent_articlesRecent articlesA
Read-onlyIdempotent
Inspect

List the most recently published articles from this publication.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 5, max 20)

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalNo
articlesYes

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already cover safety (readOnly, idempotent, non-destructive). The description adds behavioral context beyond that: results are limited to recent publication and scoped to this publication. No hidden side effects or surprising behavior are hinted at, which is fine given the annotations.

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?

One sentence conveys verb, resource, ordering, and scope with zero filler. The most important information is front-loaded.

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

Completeness5/5

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

For a simple read-only tool with one optional parameter, an output schema, and rich annotations, the description is complete enough for an agent to invoke it correctly. No critical details are missing.

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?

With 100% schema description coverage for the single limit parameter, the schema already documents the parameter. The description does not add parameter-level detail, so the baseline 3 is appropriate.

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 states a clear verb ('List'), resource ('articles'), and ordering ('most recently published'), and scopes to 'this publication.' It is semantically distinguishable from siblings like popular_content and search_articles, though it does not explicitly name them.

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 intended use case—retrieving recent articles—is implied by the wording, so an agent can infer when to call it. However, it gives no explicit guidance about when to prefer it over popular_content or search_articles, and no exclusions.

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

search_articlesSearch articlesA
Read-onlyIdempotent
Inspect

Search this publication's articles by keyword. Returns the best-matching titles, dates, canonical URLs, and short summaries.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 5, max 20)
queryYesSearch keywords

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalNo
articlesYes

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description need not restate safety. It adds useful context by mentioning 'best-matching' and the returned fields, but it does not disclose ranking behavior or pagination details beyond what the schema already provides.

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 two short sentences with no filler. The core operation is front-loaded and the return details are concise, making it easy for an agent to parse quickly.

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

Completeness5/5

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

Given the simple 2-parameter schema, complete schema descriptions, rich annotations, and presence of an output schema, the description is fully sufficient for an agent to select and invoke the tool correctly. No critical information is missing.

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%, with both 'query' and 'limit' already documented. The description only reinforces 'by keyword' and adds no meaningful semantic detail beyond the input schema.

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 states a specific verb ('Search'), resource ('this publication's articles'), and method ('by keyword'), and enumerates return fields. It clearly communicates what the tool does, though it does not explicitly differentiate it from sibling tools like 'search' or 'get_article'.

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 when to use this tool (when keyword search over articles is needed), but it offers no explicit exclusions or references to alternatives among the sibling tools. Usage guidance is left largely to inference.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • First observedfetch
    • First observedget_article
    • First observedlist_recent_articles
    • First observedpopular_content
    • First observedsearch
    • First observedsearch_articles

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Read-only MCP server exposing the catalog of articles from moncompte.org. Enables AI agents to search and retrieve article content via tools.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Read-only MCP server that extracts the main content (article text, stripped of navigation and ads) from a given URL using trafilatura. Supports markdown or plain text output.
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation3/5

Search and search_articles overlap significantly, both retrieving article matches with slightly different result formats. Fetch and get_article also both return full article text but are distinguished by id versus slug. Descriptions help resolve these overlaps, but an agent could still pick the wrong tool without close attention.

Naming Consistency3/5

Most tools follow a snake_case verb_noun pattern like get_article and search_articles, but fetch and search are bare verbs, and popular_content is a noun phrase with no verb. The pattern is readable but not fully consistent.

Tool Count5/5

Six tools is a well-scoped set for a publication content gateway: search, retrieval by two identifier types, recent listing, popular content, and article search. Each tool serves a distinct practical need without bloat.

Completeness4/5

The core content access workflows are covered: search, retrieve full text by search id, retrieve by slug, list recent, and list popular. Minor gaps exist, such as no pagination or filtering, and search_articles results don't explicitly feed into get_article or fetch, but agents can typically work around these.

Resources