Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Deep Agentic Core MCP
D
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:56:21 PM

Deep Agentic Core MCP

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Unified MCP server for AgenticLens and Agentic Chaos capabilities.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "deep-agentic-core-mcp-2": {
      "command": "npx",
      "args": [
        "-y",
        "deep-agentic-core-mcp-2"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

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:

  • agenticlens style workflow inspection, profiling, and analysis
  • agentic-chaos style 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:

  • agenticlens remains the core profiling and analysis engine
  • agentic-chaos remains the core chaos and resilience engine
  • the AI Operations Workflow Specification remains the shared data contract
  • deep-agentic-core-mcp becomes 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.

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 agenticlens and agentic-chaos instead of re-implementing their logic
  • Local-first: work well as a stdio MCP server for developer workflows β€” this matters because chaos.run_experiment executes real code (see SECURITY.md), so this server is meant for trusted, local/stdio use, not exposure to untrusted clients
  • Expandable: leave room for a later remote deployment mode if needed

MCP Surface (current, 0.2.0)

  • core.health β€” rich diagnostics: adapter availability/version, loaded tool/resource/prompt counts, workspace root, recent successful calls
  • core.version β€” server package version
  • core.verify β€” checks agenticlens/agentic-chaos/ai-operations-spec connectivity and reports readiness
  • core.session_state β€” inspect what the active session has accumulated
  • lens.analyze_workflow β€” run AgenticLens recommendations against a workflow artifact
  • lens.report_summary β€” render a Markdown workflow report
  • lens.compare_runs β€” compare baseline/candidate trace runs for regressions
  • lens.slo_summary β€” apply release-gate style SLO thresholds to an evaluation report
  • lens.audit_report β€” case-by-case evaluation detail, optionally with HTML
  • chaos.list_faults β€” list the supported fault types
  • chaos.run_experiment β€” run a workspace-sandboxed target script under selected faults (executes real code β€” see SECURITY.md)
  • spec.validate_artifact β€” validate a workflow/run artifact against the AI Operations v0.4 draft

Sequential tool calls can share context via an optional session_id argument, backed by an in-memory session store β€” see ROADMAP.md Phase 2.

See ROADMAP.md for what's shipped per phase and what's still open, and docs/tools.md for full input schemas and per-tool metadata (generated from tools/registry.py, run make docs to refresh it after changing that file).

Repository Layout

text
mcp-server/
β”œβ”€β”€ README.md
β”œβ”€β”€ ROADMAP.md
β”œβ”€β”€ pyproject.toml
β”œβ”€β”€ server.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ docs/
β”‚   β”œβ”€β”€ architecture.md
β”‚   └── tools.md          # generated - see scripts/generate_tools_doc.py
β”œβ”€β”€ examples/
β”‚   β”œβ”€β”€ sample_workflow.json
β”‚   └── chaos_target.py
β”œβ”€β”€ scripts/
β”‚   └── generate_tools_doc.py
β”œβ”€β”€ 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
β”‚       β”‚   └── session.py
β”‚       β”œβ”€β”€ adapters/
β”‚       β”‚   β”œβ”€β”€ __init__.py
β”‚       β”‚   β”œβ”€β”€ agentic_chaos.py
β”‚       β”‚   β”œβ”€β”€ agenticlens.py
β”‚       β”‚   └── ai_operations_spec.py
β”‚       └── tools/
β”‚           β”œβ”€β”€ __init__.py
β”‚           β”œβ”€β”€ registry.py
β”‚           β”œβ”€β”€ chaos.py
β”‚           β”œβ”€β”€ core.py
β”‚           β”œβ”€β”€ lens.py
β”‚           └── spec.py
└── tests/
    β”œβ”€β”€ test_degraded_boot.py
    β”œβ”€β”€ test_imports.py
    β”œβ”€β”€ test_registry.py
    β”œβ”€β”€ test_server.py
    └── test_session.py

MCP-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 metadata
  • resources/ for readable assets such as fault catalogs, templates, and workflow examples
  • prompts/ for reusable prompt templates exposed through the server
  • schemas/ for typed request and response contracts
  • services/ for shared orchestration logic that keeps tool modules thin, including the in-memory session store (services/session.py)
  • adapters/ for integration boundaries to agenticlens, agentic-chaos, and ai-operations-spec β€” each degrades to "available": false rather than crashing server boot if its sibling repo is missing

Packaging and Publishing Model

deep-agentic-core-mcp should publish in two layers:

  1. Publish the Python package to PyPI.
  2. Publish the MCP metadata in server.json to the official MCP Registry.

For PyPI-based verification, the mcp-name marker above must match the name field in server.json.

What's Next

Phase 2 (session management, rich diagnostics, tool annotations, prompt registry, core.verify) and Phase 3b (Agentic Chaos) are complete as of 0.2.0. What's still open (see ROADMAP.md for full detail):

  • Phase 3a (AgenticLens) β€” provenance verification on lens.analyze_workflow's response shape
  • Phase 3c (AI Operations Specification) β€” multi-version schema support and conformance-style reporting, both blocked on upstream ai-operations-spec work landing first
  • Phase 4 (Unified Workflows) β€” joined observability + chaos workflows, incident/readiness reporting, a higher-level control surface
  • Phase 5/6 β€” PyPI + MCP Registry publishing, operational intelligence features

Development

A Makefile provides shorthand for common tasks:

bash
make install     # install dev dependencies
make check       # run all quality gates (lint + format + typecheck + test)
make test-cov    # tests with coverage report
make docs        # regenerate docs/tools.md from tools/registry.py
make docs-check  # fail if docs/tools.md is out of date
make help        # list all available targets

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-name marker in this README
  • server.json
  • any repository URLs in pyproject.toml

Related MCP Servers

View all in Developer Tools View all alternatives
  • D
    Deep Agentic Core MCP

    Unified MCP server for AgenticLens and Agentic Chaos capabilities.

    πŸ’» Developer Tools0 views
    Compare vs Deep Agentic Core MCP β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about Deep Agentic Core MCP

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "deep-agentic-core-mcp": { "command": "npx", "args": ["-y", "Deep Agentic Core MCP"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDeep Agentic Core MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/deep-agentic-core-mcp-2?style=directory)](https://allmcps.com/mcp/deep-agentic-core-mcp-2)
HTML Embed
<a href="https://allmcps.com/mcp/deep-agentic-core-mcp-2"><img src="https://allmcps.com/api/badge/deep-agentic-core-mcp-2?style=directory" alt="Deep Agentic Core MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit1d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 9, 2026
33Quality signal: Emerging Β· 33/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools11/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Deep Agentic Core MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code