Skip to main content
Glama

Particular Service Platform Documentation MCP Server

Server Details

Search and read documentation about NServiceBus and the Particular Service Platform.

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 · MCP 2025-11-25
URL

TDQS

A4.2/5.0

Scored across 2 tools

Disambiguation5/5

read_doc and search_docs have clearly distinct purposes: one retrieves a specific page by URL, the other searches across documentation. There is no overlap or ambiguity between the two tools.

Naming Consistency5/5

Both tool names follow a consistent verb_noun snake_case pattern (read_doc, search_docs). The verbs clearly indicate the action and the nouns the resource, creating a predictable convention.

Tool Count4/5

Two tools is minimal but appropriate for a documentation server, which primarily needs search and read capabilities. It feels slightly thin but not under-scoped for the stated purpose.

Completeness4/5

The core workflow of searching for and reading documentation pages is fully covered. A list or browse tool is missing, but search serves as a sufficient entry point, so agents can work around this minor gap.

Available Tools

2 tools
read_docA
Read-onlyIdempotent
Inspect

Read one Particular Platform documentation page as Markdown. Long pages are returned in chunks.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesCopy the full URL exactly as printed by search_docs (e.g. https://docs.particular.net/...), or pass a docs:// URI or a site path with a leading slash such as '/nservicebus/sagas/'. Bare relative paths without the leading slash are rejected.
fromCharacterNoZero-based character offset at which to start. Use the continuation value returned for a truncated page. Defaults to 0.
maxCharactersNoMaximum characters to return. Defaults to 40000; values below 1000 are raised to 1000.

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already establish a safe read-only, idempotent operation. The description adds useful behavior beyond that: output is Markdown and long pages are chunked. It does not contradict the annotations, though it leaves detailed continuation mechanics to the parameter schema.

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 sentences with no wasted words; the core action and format are stated first, and the chunking caveat is second. It is appropriately sized for the tool's simplicity.

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?

Combined with the rich parameter schema and safety annotations, the description covers what the tool does, what it returns, and its chunking behavior. An agent has enough information to call it correctly, including using the continuation offset for long pages.

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 fully documents url, fromCharacter, and maxCharacters. The description's chunk mention gives light context for the offset/limit parameters, but adds little meaning beyond the 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 uses a specific verb and resource ('Read one Particular Platform documentation page as Markdown') and clearly indicates this tool fetches a single page rather than searching. It does not explicitly compare itself with search_docs, but the one-page wording is enough to distinguish 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?

Usage is implied: this is the tool you use after search_docs has produced a URL, and the URL parameter says to copy it exactly as printed by search_docs. However, there is no explicit when-to-use/when-not-to-use guidance or an alternative mentioned in the description itself.

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

search_docsA
Read-onlyIdempotent
Inspect

Keyword search over Particular Platform documentation: every content word must appear on the matched pages. When a word matches nothing (an unfamiliar term or a typo more than one letter off), the search drops the least common words and retries until a subset matches, then reports the words it dropped. Start with 2-3 core topic words; add words only to narrow. Returns up to 10 ranked pages with their type, Markdown URL, and a short description. Pass a returned URL to read_doc to read the page as Markdown.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesContent words likely to appear on the target page, for example 'saga timeout' or 'SQS transport'. Full questions work too (stopwords and punctuation are ignored). A search with no matches retries with fewer words automatically; if that still finds nothing, try different core topic words.

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds substantial behavioral context beyond that: the all-words-must-match constraint, the word-dropping retry mechanism, the 10-result cap, and the exact return shape (type, Markdown URL, short description). The retry behavior is especially valuable because it changes how an agent should interpret sparse results.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is five sentences and every one earns its place: purpose, retry behavior, query strategy, return format, and sibling routing. It is front-loaded with the core purpose. It is slightly dense in the middle (retry explanation could be tightened), but nothing is wasted.

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?

There is no output schema, so the description carries the burden of explaining return values — it does ('up to 10 ranked pages with their type, Markdown URL, and a short description'). Combined with annotations covering safety and the single fully-documented parameter, an agent has everything needed to invoke this tool 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% so the baseline is 3, and the description adds value on top: it teaches query formulation strategy ('2-3 core topic words; add words only to narrow') and explains the success/failure semantics of the query in a way the schema's static description cannot. This pushes it above 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?

States a specific verb and resource — 'Keyword search over Particular Platform documentation' — and distinguishes itself from the only sibling, read_doc, by defining the division of labor: search returns URLs, read_doc consumes them. An agent can tell these two tools apart without opening either schema.

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?

Provides concrete search strategy — 'Start with 2-3 core topic words; add words only to narrow' — and explains the automatic retry-with-fewer-words fallback so an agent knows what to do when results are empty. It names the alternative (read_doc) as the follow-up for returned URLs, though it doesn't state an explicit when-not-to-use exclusion for the search tool itself.

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.

  1. 2 tool updates
    • First observedread_doc
    • First observedsearch_docs

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources