AgentStack
MCP verified MIT Self-run

Agent Stack

mcp-mukundakatta-agent-stack · by MukundaKatta

The Agent Reliability Stack: fit, guard, snap, vet, cast. One landing page for all 11 npm + 6 PyPI packages.

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add mcp-mukundakatta-agent-stack

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Agent Stack? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

agent-stack

> Six small, single-concern reliability libraries for production LLM agents — TypeScript, Python, and MCP servers. Zero runtime dependencies. Adopt one or all.

[](https://doi.org/10.5281/zenodo.20074702) [](https://doi.org/10.57967/hf/8720) [](#license) [](https://huggingface.co/spaces/mukunda1729/agent-stack-demo)

Landing page: https://mukundakatta.github.io/agent-stack/ Paper: Six Reliability Primitives for LLM Agents: An Artifact Pattern for Stackable, Single-Concern Libraries HuggingFace Hub: mukunda1729/agent-stack

The six primitives

| Library | Concern | | --- | --- | | AgentFit | Token-aware context-window fitting | | AgentGuard | Network egress allowlist for tool calls | | AgentSnap | Snapshot tests for tool-call traces | | AgentVet | Tool-arg validation with retry hints | | AgentCast | Structured-output validate-and-retry for LLM JSON | | AgentBudget | Per-run token + dollar caps |

Each ships in three forms: TypeScript on npm, Python on PyPI, MCP-server variant.

Install

# TypeScript
npm i @mukundakatta/agentfit @mukundakatta/agentguard @mukundakatta/agentsnap \
       @mukundakatta/agentvet @mukundakatta/agentcast @mukundakatta/agentbudget

# Python
pip install agentfit agentguard agentsnap agentvet agentcast agentbudget
// MCP server (Claude Desktop config)
{
  "mcpServers": {
    "agentvet": { "command": "npx", "args": ["-y", "@mukundakatta/agentvet-mcp"] },
    "agentguard": { "command": "npx", "args": ["-y", "@mukundakatta/agentguard-mcp"] }
  }
}

Read more

Find them all

GitHub topic search across the family: topic:agent-stack on user MukundaKatta — 24 repos pinned.

Citation

@misc{katta2026agentstack,
  author    = {Katta, Mukunda Rao},
  title     = {Six Reliability Primitives for LLM Agents:
               An Artifact Pattern for Stackable, Single-Concern Libraries},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.20074702},
  url       = {https://doi.org/10.5281/zenodo.20074702}
}

Local dev

To preview the landing page locally:

python3 -m http.server 8000
# open http://localhost:8000

License

MIT.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.