deep-agentic-core-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@deep-agentic-core-mcpprofile the support workflow and suggest optimizations"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
deep-agentic-core-mcp
deep-agentic-core-mcp is the shared MCP server layer for the DeepAgentLabs
ecosystem. It is designed to expose a single MCP interface that combines:
agenticlensstyle workflow inspection, profiling, and analysisagentic-chaosstyle resilience testing and fault-injection workflows
It sits above the AI Operations Workflow Specification, exposing a unified MCP-native control surface over the shared operational model used by the reference implementations.
The goal is one MCP server, one package, and one registry identity rather than separate MCP servers for each product surface.
Idea
This project is the control plane between LLM hosts and the existing Python libraries:
agenticlensremains the core profiling and analysis engineagentic-chaosremains the core chaos and resilience enginethe
AI Operations Workflow Specificationremains the shared data contractdeep-agentic-core-mcpbecomes the MCP-native interface that hosts can call
That means MCP clients can connect once and access both observability and chaos testing capabilities through one server.
Related MCP server: spiderswitch
What This Server Should Eventually Do
Planned capability areas:
profile an agentic workflow and return structured telemetry summaries
analyze workflow artifacts and surface optimization recommendations
run controlled chaos experiments against target workflows
compare normal versus chaos runs
expose shared resources such as workflow schemas, run metadata, and saved reports
Design Principles
One MCP identity: publish a single server to the MCP Registry
Python-first: package and publish through PyPI
Thin orchestration layer: reuse
agenticlensandagentic-chaosinstead of re-implementing their logicLocal-first: work well as a stdio MCP server for developer workflows
Expandable: leave room for a later remote deployment mode if needed
Initial Scope
The first milestone is foundation only:
repository structure
packaging metadata
MCP registry metadata
roadmap and product framing
minimal server entrypoint and tool layout
The first working implementation can stay intentionally small while the shape of the tool surface stabilizes.
Proposed MCP Surface
Possible first tool groups:
lens.profile_workflowlens.analyze_workflowchaos.run_experimentchaos.list_faultscore.healthcore.version
These names are placeholders, but the structure matters: one server can expose multiple tools without needing multiple MCP packages or registry entries.
Repository Layout
mcp-server/
├── README.md
├── ROADMAP.md
├── pyproject.toml
├── server.json
├── .gitignore
├── docs/
│ └── architecture.md
├── examples/
│ └── sample_workflow.json
├── src/
│ └── deep_agentic_core_mcp/
│ ├── __init__.py
│ ├── server.py
│ ├── config.py
│ ├── prompts/
│ │ ├── __init__.py
│ │ └── registry.py
│ ├── resources/
│ │ ├── __init__.py
│ │ └── catalog.py
│ ├── schemas/
│ │ ├── __init__.py
│ │ └── tooling.py
│ ├── services/
│ │ ├── __init__.py
│ │ └── registry.py
│ ├── adapters/
│ │ ├── __init__.py
│ │ ├── agentic_chaos.py
│ │ └── agenticlens.py
│ └── tools/
│ ├── __init__.py
│ ├── registry.py
│ ├── chaos.py
│ ├── core.py
│ └── lens.py
└── tests/
├── test_imports.py
└── test_registry.pyMCP-Oriented Structure
This repository should have all of the standard layers we expect for a useful MCP server:
tools/for callable MCP tools and their registration metadataresources/for readable assets such as fault catalogs, templates, and workflow examplesprompts/for reusable prompt templates exposed through the serverschemas/for typed request and response contractsservices/for shared orchestration logic that keeps tool modules thinadapters/for integration boundaries toagenticlensandagentic-chaos
The implementation is still early, but the file structure now reflects that shape so we can add functionality without reshuffling the repo later.
Packaging and Publishing Model
deep-agentic-core-mcp should publish in two layers:
Publish the Python package to PyPI.
Publish the MCP metadata in
server.jsonto the official MCP Registry.
For PyPI-based verification, the mcp-name marker above must match the
name field in server.json.
Near-Term Build Order
Lock the canonical namespace and package metadata.
Implement the stdio MCP server entrypoint.
Add a minimal
core.healthtool.Add the first
agenticlensandagentic-chaosadapter-backed tools.Add examples and publishable packaging checks.
Notes
This scaffold assumes the intended GitHub namespace is
io.github.deepagentlabs/deep-agentic-core-mcp. If the final publishing
account or org changes, update:
the
mcp-namemarker in this READMEserver.jsonany repository URLs in
pyproject.toml
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.Last updated52MIT
- Alicense-qualityCmaintenanceMCP server that enables agents to dynamically switch between multiple AI models (OpenAI, Anthropic, Google, etc.) with unified protocol-driven configuration and capability discovery.Last updatedApache 2.0

AgentMark MCP Serverofficial
Alicense-qualityBmaintenanceMCP server for AgentMark. Exposes the full AgentMark API to AI editors: list traces and spans, manage datasets, write scores, run experiments, manage apps, deployments, environments, and annotation queues.Last updated352AGPL 3.0- Alicense-qualityCmaintenanceA local MCP server that forwards tools from an upstream experiment platform and adds AI Agent tools for experiment analysis and skill debugging.Last updatedMIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DeepAgentLabs/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server