一键导入
langfuse
Query and analyze Langfuse observability data (observations, metrics, scores) via the mcp CLI for debugging LLM behavior, cost, and user activity.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query and analyze Langfuse observability data (observations, metrics, scores) via the mcp CLI for debugging LLM behavior, cost, and user activity.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Read Slack threads or channel history and post concise bot replies through slack-post-message when the user asks to answer in Slack or when a Slack event payload provides channel and thread context.
GitHub CLI surface allowed by Thor's server-side gh policy. Append-only: Thor can create PRs, comments, and non-approval reviews but cannot approve, merge, edit, or delete prior artifacts.
Run project commands (build, test, lint) in a cloud sandbox with common runtimes and on-demand toolchains.
Orchestrate real browser interaction, screenshots, recordings, and UI evidence without encoding app-specific flows.
Inspect LaunchDarkly feature flags, environments, segments, and metrics through the read-only ldcli wrapper.
Git command surface allowed by Thor's server-side policy. Thor's git is append-only to the local repo and to origin. Load this skill to see what commands are allowed and the common redirect patterns.
| name | langfuse |
| description | Query and analyze Langfuse observability data (observations, metrics, scores) via the mcp CLI for debugging LLM behavior, cost, and user activity. |
Use this skill when:
traceId / sessionIdLangfuse is a read-only MCP upstream, reached through the mcp CLI like any
other upstream. It appears in mcp only when this session's profile resolves
Langfuse credentials.
mcp # list upstreams available to this session
mcp langfuse # list Langfuse tools
mcp langfuse <tool> # show a tool's description + input schema
mcp langfuse <tool> '{"arg":"value"}' # call a tool (single JSON argument)
Always start with mcp langfuse to list tools, then mcp langfuse <tool> to read
a tool's description and exact input schema, then call it with a single JSON argument.
Read-only tools available include:
listObservations, getObservation, and the schema/filter
helpers (getObservationFieldSchema, getObservationFilterSchema,
getObservationFilterValues)queryMetrics, getMetricsSchemalistScores, getScore, listScoreConfigs, getScoreConfigWrite/mutation tools are not exposed (Langfuse access is read-only); they will not appear in the listing.
Keep payloads small with limit and filters:
mcp langfuse listObservations '{"limit":10,"type":"GENERATION"}'
mcp langfuse getObservation '{"observationId":"<id>"}'
Use getObservationFilterValues / getObservationFilterSchema to discover the
exact filter shape, then pass it to listObservations.
mcp langfuse getMetricsSchema '{}'
mcp langfuse queryMetrics '{"view":"observations","metrics":[{"measure":"totalCost","aggregation":"sum"}],"dimensions":[{"field":"name"}]}'
mcp langfuse listScores '{"limit":10}'
mcp langfuse listScoreConfigs '{}'
limit and narrow filters.mcp langfuse <tool>) before constructing
arguments — argument shapes are defined by the live MCP server, not by this skill.limit and the narrowest filters.mcp langfuse <tool> (prints the input schema) rather than assuming.