Docs
MCP server
The Polylane docs site runs a Model Context Protocol server so any MCP-compatible AI tool can search and read the documentation.
The Model Context Protocol is an open standard that lets AI tools call external services. The Polylane docs site runs its own Model Context Protocol (MCP) server, so any coding agent can search and read the docs directly.
This page covers the docs MCP server, which only reads documentation. To give a coding agent access to your Polylane workspace (topology, issues, threads), use the platform MCP server instead.
Endpoint
https://docs.polylane.com/mcp
Built-in tools
list-pages
Lists every page with its title, path, description, and full URL. Agents call this first to discover what's available. It takes no parameters.
get-page
Fetches the full markdown of a page.
| Parameter | Type | Description |
|---|---|---|
path | string (required) | Page path from list-pages, e.g. /remediation/automations |
Install in your editor
Terminal
claude mcp add --transport http polylane-docs https://docs.polylane.com/mcp
opencode.json
{
"mcp": {
"polylane-docs": {
"type": "remote",
"url": "https://docs.polylane.com/mcp"
}
}
}
.cursor/mcp.json
{
"mcpServers": {
"polylane-docs": {
"type": "http",
"url": "https://docs.polylane.com/mcp"
}
}
}
.vscode/mcp.json
{
"servers": {
"polylane-docs": {
"type": "http",
"url": "https://docs.polylane.com/mcp"
}
}
}
.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"polylane-docs": {
"type": "http",
"url": "https://docs.polylane.com/mcp"
}
}
}
.config/zed/settings.json
{
"context_servers": {
"polylane-docs": {
"source": "custom",
"command": "npx",
"args": ["mcp-remote", "https://docs.polylane.com/mcp"],
"env": {}
}
}
}
Once connected, your editor's agent can search the docs mid-conversation, cite exact pages, and stay current as the documentation changes.