Particular Service Platform Documentation MCP Server
Search and read documentation about NServiceBus and the Particular Service Platform.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"particular-docs-mcp": {
"url": "https://docs.particular.net/mcp"
}
}
}Remote endpoints
https://docs.particular.net/mcpstreamable-httpWhat it can do
Tool inventory
Tools (2)
🟢search_docs(query)
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.
Input Schema
{
"type": "object",
"properties": {
"query": {
"description": "Content 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.",
"type": "string"
}
},
"required": [
"query"
]
}🟢read_doc(url, fromCharacter, maxCharacters)
Read one Particular Platform documentation page as Markdown. Long pages are returned in chunks.
Input Schema
{
"type": "object",
"properties": {
"url": {
"description": "Copy 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.",
"type": "string"
},
"fromCharacter": {
"description": "Zero-based character offset at which to start. Use the continuation value returned for a truncated page. Defaults to 0.",
"type": "integer",
"default": 0
},
"maxCharacters": {
"description": "Maximum characters to return. Defaults to 40000; values below 1000 are raised to 1000.",
"type": "integer",
"default": 40000
}
},
"required": [
"url"
]
}Community
Evidence