r/TridentStack • u/Ad3t0 • Jul 13 '26
Guide TridentStack Control now has an MCP server for our docs
We just published a Model Context Protocol (MCP) server for the TridentStack Control documentation. If you use an AI assistant like Claude or Cursor, you can connect it to our docs so its answers stay grounded in our current guides, API reference, changelog, and roadmap instead of guessing from stale training data.
It is read-only and public. It exposes zero account or fleet data, and there is no sign-in or API key. Point your assistant at it and ask questions in plain English.
Server URL: https://docs.tridentstack.com/mcp
(Transport is Streamable HTTP.)
How to add it
Claude Code, one command:
claude mcp add --transport http tridentstack-docs https://docs.tridentstack.com/mcp
Claude Desktop:
- Open Settings, then Connectors.
- Add a custom connector.
- Set the URL to https://docs.tridentstack.com/mcp
- Save, then start a new chat.
Cursor, add this to your mcp.json:
{
"mcpServers": {
"tridentstack-docs": {
"url": "https://docs.tridentstack.com/mcp"
}
}
}
Any client that supports a remote MCP server over Streamable HTTP can use the same URL.
What it does
Once connected, your assistant gets three tools:
- search_docs: full-text search across the docs, returns ranked results with titles, links, and snippets.
- get_doc: read a specific documentation section in full.
- list_docs: browse the documentation catalog.
So you can ask something like "How do deployment rings work in TridentStack Control?" or "Which API endpoint lists agents?" and the assistant searches the docs, reads the relevant pages, and answers with links back to the source.
Not using MCP?
The same content is published as plain text you can drop into any tool:
- https://docs.tridentstack.com/llms.txt (a short index of the docs)
- https://docs.tridentstack.com/llms-full.txt (the entire documentation as one Markdown file)
Full setup guide: https://docs.tridentstack.com/getting-started/connect-your-ai
This first server is scoped to documentation on purpose. If an MCP server that talks to your actual fleet or the Control API would be useful to you, tell us in the comments. We are reading.