langfuse
Original:🇺🇸 English
Translated
Debug AI traces, find exceptions, analyze sessions, and manage prompts via Langfuse MCP. Also handles MCP setup and configuration.
20installs
Sourceavivsinai/langfuse-mcp
Added on
NPX Install
npx skill4agent add avivsinai/langfuse-mcp langfuseTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Langfuse Skill
Debug your AI systems through Langfuse observability.
Triggers: langfuse, traces, debug AI, find exceptions, set up langfuse, what went wrong, why is it slow, datasets, evaluation sets
Setup
Step 1: Get credentials from https://cloud.langfuse.com → Settings → API Keys
If self-hosted, use your instance URL for and create keys there.
LANGFUSE_HOSTStep 2: Install MCP (pick one):
bash
# Claude Code (project-scoped, shared via .mcp.json)
claude mcp add \
--scope project \
--env LANGFUSE_PUBLIC_KEY=pk-... \
--env LANGFUSE_SECRET_KEY=sk-... \
--env LANGFUSE_HOST=https://cloud.langfuse.com \
langfuse -- uvx --python 3.11 langfuse-mcp
# Codex CLI (user-scoped, stored in ~/.codex/config.toml)
codex mcp add langfuse \
--env LANGFUSE_PUBLIC_KEY=pk-... \
--env LANGFUSE_SECRET_KEY=sk-... \
--env LANGFUSE_HOST=https://cloud.langfuse.com \
-- uvx --python 3.11 langfuse-mcpStep 3: Restart CLI, verify with (Claude) or (Codex)
/mcpcodex mcp listStep 4: Test:
fetch_traces(age=60)Read-Only Mode
For safer observability without risk of modifying prompts or datasets, enable read-only mode:
bash
# CLI flag
langfuse-mcp --read-only
# Or environment variable
LANGFUSE_MCP_READ_ONLY=trueThis disables write tools: , , , , , .
create_text_promptcreate_chat_promptupdate_prompt_labelscreate_datasetcreate_dataset_itemdelete_dataset_itemFor manual setup or troubleshooting, see .
.mcp.jsonreferences/setup.mdPlaybooks
"Where are the errors?"
find_exceptions(age=1440, group_by="file")→ Shows error counts by file. Pick the worst offender.
find_exceptions_in_file(filepath="src/ai/chat.py", age=1440)→ Lists specific exceptions. Grab a trace_id.
get_exception_details(trace_id="...")→ Full stacktrace and context.
"What happened in this interaction?"
fetch_traces(age=60, user_id="...")→ Find the trace. Note the trace_id.
If you don't know the user_id, start with:
fetch_traces(age=60)fetch_trace(trace_id="...", include_observations=true)→ See all LLM calls in the trace.
fetch_observation(observation_id="...")→ Inspect a specific generation's input/output.
"Why is it slow?"
fetch_observations(age=60, type="GENERATION")→ Find recent LLM calls. Look for high latency.
fetch_observation(observation_id="...")→ Check token counts, model, timing.
"What's this user experiencing?"
get_user_sessions(user_id="...", age=1440)→ List their sessions.
get_session_details(session_id="...")→ See all traces in the session.
"Manage datasets"
list_datasets()→ See all datasets.
get_dataset(name="evaluation-set-v1")→ Get dataset details.
list_dataset_items(dataset_name="evaluation-set-v1", page=1, limit=10)→ Browse items in the dataset.
create_dataset(name="qa-test-cases", description="QA evaluation set")→ Create a new dataset.
create_dataset_item(
dataset_name="qa-test-cases",
input={"question": "What is 2+2?"},
expected_output={"answer": "4"}
)→ Add test cases.
create_dataset_item(
dataset_name="qa-test-cases",
item_id="item_123",
input={"question": "What is 3+3?"},
expected_output={"answer": "6"}
)→ Upsert: updates existing item by id or creates if missing.
"Manage prompts"
list_prompts()→ See all prompts with labels.
get_prompt(name="...", label="production")→ Fetch current production version.
create_text_prompt(name="...", prompt="...", labels=["staging"])→ Create new version in staging.
update_prompt_labels(name="...", version=N, labels=["production"])→ Promote to production. (Rollback = re-apply label to older version)
Quick Reference
| Task | Tool |
|---|---|
| List traces | |
| Get trace details | |
| List LLM calls | |
| Get observation | |
| Error count | |
| Find exceptions | |
| List sessions | |
| User sessions | |
| List prompts | |
| Get prompt | |
| List datasets | |
| Get dataset | |
| List dataset items | |
| Create/update dataset item | |
ageReferences
- — Full parameter docs, filter semantics, response schemas
references/tool-reference.md - — Manual setup, troubleshooting, advanced configuration
references/setup.md