Skip to content

LatenceTech Documentation MCP server

This guide shows you how to connect your AI assistant to the LatenceTech documentation, allowing it to search and read the official docs at docs.latence.ca in real-time.

What This Does

Once connected, your AI assistant can:
- Search the LatenceTech documentation for specific topics
- Read and explain any documentation page
- Answer questions using the most current version of the docs

Connection Details

Server URL: https://docs-mcp.latence.ca

Protocol: Model Context Protocol (MCP) over HTTPS

Authentication: None required (auto-approved connection)

Connecting Your AI Assistant

Claude Web (claude.ai)

  1. Open Claude at claude.ai
  2. Go to SettingsConnectors
  3. Click "Add custom connector"
  4. Fill in the details:
  5. Name: Latence Docs
  6. Remote MCP server URL: https://docs-mcp.latence.ca
  7. Leave all other fields empty
  8. Click "Add"
  9. A popup window will appear and automatically approve the connection
  10. Done! You should see "Latence Docs" listed in your connectors

Claude Desktop

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add this configuration:

{
  "mcpServers": {
    "latence-docs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://docs-mcp.latence.ca"
      ]
    }
  }
}

Restart Claude Desktop

Other MCP-Compatible Clients

If your AI client supports the Model Context Protocol (MCP):

  1. Add a new MCP server connection
  2. Use the server URL: https://docs-mcp.latence.ca
  3. Protocol: HTTPS
  4. Authentication: None (or use the auto-approve OAuth flow if prompted)

For command-line or programmatic access, you can use the mcp-remote bridge:

npx -y mcp-remote https://docs-mcp.latence.ca

Available Capabilities

Once connected, the documentation assistant provides three main functions:

  1. Browse Documentation Structure - View the complete table of contents
  2. Search Documentation - Find pages by keyword or topic
  3. Read Documentation Pages - Retrieve full page content in a readable format

Example Questions

Once connected, you can ask your AI assistant questions like:

  • "How do I configure the Traffic Shaper?"
  • "What are the hardware requirements for LatenceTech?"
  • "Search the docs for offline installation instructions"
  • "Explain how the dashboard widgets work"
  • "Show me the documentation structure"

Your AI will automatically search and read the relevant documentation pages to provide accurate, up-to-date answers.

Troubleshooting

Connection won't establish: - Verify you've entered the URL exactly: https://docs-mcp.latence.ca - Ensure your client supports MCP over HTTPS - Try refreshing and reconnecting

AI assistant doesn't see the connector: - Check that your configuration syntax is correct - Restart your AI application completely - Verify MCP support is enabled in your client

Still having issues? Contact your LatenceTech administrator for assistance.

Technical Details

  • Server Type: HTTP-based MCP server
  • Content Format: Markdown (converted from HTML)
  • Update Frequency: Real-time (fetches current documentation on each request)
  • Source: docs.latence.ca official documentation