Agent for interacting with Langfuse Observability API
Project description
Langfuse Agent - A2A | AG-UI | MCP
Version: 0.11.1
Overview
Langfuse Agent MCP Server + A2A Agent
Agent for interacting with Langfuse Observability API
This repository is actively maintained - Contributions are welcome!
MCP
Available MCP Tools
This server utilizes dynamic Action-Routed tools to optimize token overhead and maximize IDE compatibility.
| Tool Name | Description |
|---|---|
langfuse_annotation_queues |
Consolidated Action-Routed tool for annotation_queues. Methods: annotation_queues_list_queues, annotation_queues_create_queue, annotation_queues_get_queue, annotation_queues_list_queue_items, annotation_queues_create_queue_item, annotation_queues_get_queue_item, annotation_queues_update_queue_item, annotation_queues_delete_queue_item, annotation_queues_create_queue_assignment, annotation_queues_delete_queue_assignment |
langfuse_blob_storage_integrations |
Consolidated Action-Routed tool for blob_storage_integrations. Methods: blob_storage_integrations_get_blob_storage_integrations, blob_storage_integrations_upsert_blob_storage_integration, blob_storage_integrations_get_blob_storage_integration_status, blob_storage_integrations_delete_blob_storage_integration |
langfuse_comments |
Consolidated Action-Routed tool for comments. Methods: comments_create, comments_get, comments_get_by_id |
langfuse_dataset_items |
Consolidated Action-Routed tool for dataset_items. Methods: dataset_items_create, dataset_items_list, dataset_items_get, dataset_items_delete |
langfuse_dataset_run_items |
Consolidated Action-Routed tool for dataset_run_items. Methods: dataset_run_items_create, dataset_run_items_list |
langfuse_datasets |
Consolidated Action-Routed tool for datasets. Methods: datasets_list, datasets_create, datasets_get, datasets_get_run, datasets_delete_run, datasets_get_runs |
langfuse_health |
Consolidated Action-Routed tool for health. Methods: health_health |
langfuse_ingestion |
Consolidated Action-Routed tool for ingestion. Methods: ingestion_batch |
langfuse_legacy_metrics_v1 |
Consolidated Action-Routed tool for legacy_metrics_v1. Methods: legacy_metrics_v1_metrics |
langfuse_legacy_observations_v1 |
Consolidated Action-Routed tool for legacy_observations_v1. Methods: legacy_observations_v1_get, legacy_observations_v1_get_many |
langfuse_legacy_score_v1 |
Consolidated Action-Routed tool for legacy_score_v1. Methods: legacy_score_v1_create, legacy_score_v1_delete |
langfuse_llm_connections |
Consolidated Action-Routed tool for llm_connections. Methods: llm_connections_list, llm_connections_upsert |
langfuse_media |
Consolidated Action-Routed tool for media. Methods: media_get, media_patch, media_get_upload_url |
langfuse_metrics |
Consolidated Action-Routed tool for metrics. Methods: metrics_metrics |
langfuse_models |
Consolidated Action-Routed tool for models. Methods: models_create, models_list, models_get, models_delete |
langfuse_observations |
Consolidated Action-Routed tool for observations. Methods: observations_get_many |
langfuse_opentelemetry |
Consolidated Action-Routed tool for opentelemetry. Methods: opentelemetry_export_traces |
langfuse_organizations |
Consolidated Action-Routed tool for organizations. Methods: organizations_get_organization_memberships, organizations_update_organization_membership, organizations_delete_organization_membership, organizations_get_project_memberships, organizations_update_project_membership, organizations_delete_project_membership, organizations_get_organization_projects, organizations_get_organization_api_keys |
langfuse_projects |
Consolidated Action-Routed tool for projects. Methods: projects_get, projects_create, projects_update, projects_delete, projects_get_api_keys, projects_create_api_key, projects_delete_api_key |
langfuse_prompt_version |
Consolidated Action-Routed tool for prompt_version. Methods: prompt_version_update |
langfuse_prompts |
Consolidated Action-Routed tool for prompts. Methods: prompts_get, prompts_delete, prompts_list, prompts_create |
langfuse_scim |
Consolidated Action-Routed tool for scim. Methods: scim_get_service_provider_config, scim_get_resource_types, scim_get_schemas, scim_list_users, scim_create_user, scim_get_user, scim_delete_user |
langfuse_score_configs |
Consolidated Action-Routed tool for score_configs. Methods: score_configs_create, score_configs_get, score_configs_get_by_id, score_configs_update |
langfuse_scores |
Consolidated Action-Routed tool for scores. Methods: scores_get_many, scores_get_by_id |
langfuse_sessions |
Consolidated Action-Routed tool for sessions. Methods: sessions_list, sessions_get |
langfuse_trace |
Consolidated Action-Routed tool for trace. Methods: trace_get, trace_delete, trace_list, trace_delete_multiple |
A2A Agent
Run A2A Server
export LANGFUSE_URL="http://localhost:8080"
export LANGFUSE_TOKEN="your_token"
langfuse-agent --provider openai --model-id gpt-4o --api-key sk-...
The A2A agent uses agent-utilities for:
- Auto-discovery of MCP tools from mcp_config.json
- Pydantic AI agent with graph-based routing
- Web UI support
- OpenTelemetry integration
- Custom skills support
Security & Governance
This project is built on agent-utilities, inheriting enterprise-grade security and governance features.
Authentication & Authorization
| Feature | Description |
|---|---|
| OIDC Token Delegation | RFC 8693 token exchange for user-context propagation from A2A → MCP |
| Eunomia Policies | Fine-grained, policy-driven tool authorization (none, embedded, remote) |
| Scoped Credentials | Tools execute with the caller's scoped identity where possible |
| 3LO / OAuth / API Token | Multiple auth strategies with graceful fallback |
Eunomia Policy Enforcement
Eunomia provides a policy enforcement point for all tool calls:
- Embedded mode: Load local
mcp_policies.jsonfor role-based access, sensitivity gating, and audit logging - Remote mode: Forward authorization decisions to a central Eunomia policy server for multi-agent governance
- Enable via CLI:
--eunomia-type embedded --eunomia-policy-file mcp_policies.json
Runtime Protections
| Protection | Description |
|---|---|
| Tool Guard | Sensitivity detection with human-in-the-loop approval gating |
| Prompt Injection Defense | Input scanning and repetition/loop guards |
| Content Filtering | Output schema enforcement and cost budget controls |
| Stuck Loop Detection | Automatic detection and recovery from agent loops |
| Context Limit Warnings | Proactive alerts before context window exhaustion |
Graph Agent Architecture
The A2A agent uses pydantic-graph orchestration with:
- RouterNode: Lightweight classifier that routes queries to specialized domains
- DomainNode: Focused executor with only relevant tools loaded, preventing tool hallucination
- Approval Gates: Policy-driven approval workflows before sensitive operations
- Usage Guards: Budget and rate limiting enforcement
Production Recommendation: Enable
--eunomia-type embedded(orremote) + OIDC delegation + containerized deployment. Seeagent-utilitiesdocumentation for full policy configuration.
Docker
Build
docker build -t langfuse-agent .
Run MCP Server
docker run -d \
--name langfuse-agent \
-p 8000:8000 \
-e TRANSPORT=http \
-e LANGFUSE_URL="http://your-service:8080" \
-e LANGFUSE_TOKEN="your_token" \
knucklessg1/langfuse-agent:latest
Deploy with Docker Compose
services:
langfuse-agent:
image: knucklessg1/langfuse-agent:latest
environment:
- HOST=0.0.0.0
- PORT=8000
- TRANSPORT=http
- LANGFUSE_URL=http://your-service:8080
- LANGFUSE_TOKEN=your_token
ports:
- 8000:8000
Configure mcp.json for AI Integration (e.g. Claude Desktop)
{
"mcpServers": {
"langfuse": {
"command": "uv",
"args": [
"run",
"--with",
"langfuse-agent",
"langfuse-mcp"
],
"env": {
"LANGFUSE_URL": "http://your-service:8080",
"LANGFUSE_TOKEN": "your_token"
}
}
}
}
Install Python Package
python -m pip install langfuse-agent
uv pip install langfuse-agent
Repository Owners
MCP Configuration Examples
stdio (recommended for local development)
{
"mcpServers": {
"langfuse": {
"command": ".venv/bin/langfuse-mcp",
"args": [],
"env": {
"LANGFUSE_HOST": "",
"LANGFUSE_PUBLIC_KEY": "",
"LANGFUSE_SECRET_KEY": ""
}
}
}
}
Streamable HTTP (recommended for production)
{
"mcpServers": {
"langfuse": {
"url": "http://localhost:8080/langfuse-mcp/mcp"
}
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langfuse_agent-0.11.1.tar.gz.
File metadata
- Download URL: langfuse_agent-0.11.1.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88d9237bf504f30fc8af71822c029228c5064241f03ebba40ab760309dc51715
|
|
| MD5 |
4597ce0d0e33729b5fd60834c2ec1d27
|
|
| BLAKE2b-256 |
6e354d2ac17c13f0e45dea8ef4dc2afbbb20649a5bed72601b1f17afd8a1ff6b
|
File details
Details for the file langfuse_agent-0.11.1-py3-none-any.whl.
File metadata
- Download URL: langfuse_agent-0.11.1-py3-none-any.whl
- Upload date:
- Size: 43.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd025b9bd3270d14fa0aa95862567803b9e215791a8a2568385e1483f26fb433
|
|
| MD5 |
a7b662a3ea8cdeadecd6c4d3070e16a6
|
|
| BLAKE2b-256 |
84a1ff6086648103efd4c9e9c28114333634f57637343db488c329b519ad9498
|