CoreDocs MCP Server

Litefuse Docs MCP Server

The Litefuse Docs MCP server exposes the Litefuse docs to AI agents.

Core use case: Use Cursor (or other AI Coding Agent) to automatically integrate Litefuse Tracing into your codebase, see get started for detailed instructions and an example prompt.

This is the public MCP server for the Litefuse documentation. There is also an authenticated MCP server to integrate with the rest of the Litefuse data platform (docs).

Install

Add Langfuse Docs MCP to Cursor via the one-click install:

Manual configuration

Add the following to your mcp.json:

{
  "mcpServers": {
    "langfuse-docs": {
      "url": "https://litefuse.ai/api/mcp"
    }
  }
}

About

  • Endpoint: https://litefuse.ai/api/mcp
  • Transport: streamableHttp
  • Authentication: None
  • Tools:
    • searchLitefuseDocs: Semantic search (RAG) over the Litefuse documentation. Returns a concise answer synthesized from relevant docs. Use for broader questions; prefer getLitefuseDocsPage for specific pages. Powered by Inkeep RAG API.
    • getLitefuseDocsPage: Fetch the raw Markdown for a specific Litefuse docs page. Accepts a docs path (e.g., /docs/observability/overview) or a full https://litefuse.ai URL. Use for specific pages, integrations, or code samples.
    • getLitefuseOverview: Get a high-level index by fetching llms.txt. Use at the start of a session to discover key docs endpoints. Avoid repeated calls.

References

REST Endpoint

The underlying docs search (searchLitefuseDocs tool) is also available independently as a REST API at https://litefuse.ai/api/search-docs.

curl "https://litefuse.ai/api/search-docs?query=Litefuse+Docs+MCP+Server"

Use this endpoint directly when you need lightweight semantic search outside of MCP.

Was this page helpful?