CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
archonics avatar

Mcp Audit

archonics/mcp-audit
authSTDIOregistry active
Summary

Connects to Anthropic's API using your own key to run context engineering audits on AI agent configurations. Exposes three tools: audit_system_prompt for finding instruction conflicts and role clarity issues, audit_tool_definition for checking function call reliability problems, and audit_context_packing for spotting redundancy and truncation risks. Returns top three findings per scan with severity rankings and specific recommendations. Useful when you're debugging why an agent isn't following instructions or when tools aren't getting called reliably. The audit engine applies Archonics' methodology but runs client side, so your prompts never hit their servers. Free tier gives you quick feedback; paid tiers available if you need full reports.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Archonics MCP Audit Server

Free-tier context engineering audits for production AI agents, delivered as MCP tools you can call from Claude Desktop, Cursor, Claude Code, or any MCP-compatible client.

What you get: top-3 findings on your system prompts, tool definitions, or context packing, on demand, no account needed.

What it costs: nothing. The free scan is genuinely free. Upgrade paths to the $49 Instant Audit and $750 Full Audit are surfaced in the response footer; they're not paywalls on this tool.

Why this exists

Most production agent failures aren't model failures — they're context engineering failures. Ambiguous instructions, underspecified tools, bloated context, no regression tests on prompt changes. Those problems are spottable by a trained reader. Archonics has trained that reader and published it as an MCP tool so you can get a second opinion on your agent's context without filing a support ticket.

The underlying audit engine applies Archonics Audit Methodology v1.0, the same spec that drives our paid audits.

Tools

audit_system_prompt

Paste a system prompt. Get back the three most important context engineering issues in it, ranked by severity, with specific recommendations.

Covers: role clarity, instruction conflicts, negative space, priority structure when instructions conflict, token efficiency, format specification precision, failure-mode coverage.

audit_tool_definition

Paste a tool/function definition. Get back the three most important issues affecting how reliably the model will call it.

Covers: description quality (the "when to use this tool" question), parameter schema precision, parameter documentation, error response design, discoverability.

audit_context_packing

Paste a representative context payload (or describe it structurally). Get back the three most important efficiency and quality issues.

Covers: content inventory, redundancy across sections, freshness/relevance, ordering, truncation risk, prompt-cache utilization.

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "archonics-audit": {
      "command": "npx",
      "args": ["-y", "@archonics/mcp-audit"],
      "env": {
        "ANTHROPIC_API_KEY": "your-anthropic-api-key-here"
      }
    }
  }
}

Cursor

Add to your .cursor/mcp.json:

{
  "mcpServers": {
    "archonics-audit": {
      "command": "npx",
      "args": ["-y", "@archonics/mcp-audit"],
      "env": {
        "ANTHROPIC_API_KEY": "your-anthropic-api-key-here"
      }
    }
  }
}

Claude Code

claude mcp add archonics-audit npx -y @archonics/mcp-audit

Then set ANTHROPIC_API_KEY in your environment.

Why does it need my Anthropic API key?

The audit engine runs on Claude. You bring your own API key so:

  1. Audit submissions go directly from your machine to Anthropic's API, never through Archonics servers.
  2. Your costs are transparent — a typical audit uses 2,000–4,000 tokens, well under a penny.
  3. There's no "free but actually limited" rate-limit surprise. Your API key, your limits.

If you'd rather not bring your own key, use the $49 Instant Audit at agent.market — we cover the API costs and return a full-methodology audit PDF.

Privacy

Submitted content is processed ephemerally. No prospect content is retained on Archonics infrastructure or used to train any model. The API call pattern is: your client → your Anthropic API key → Anthropic → your client. Archonics servers are not in this path.

Aggregated, anonymized patterns across many audits may inform improvements to the methodology — "18 of 20 audited systems lacked prompt-regression tests" — but specific content never feeds that process.

Details: archonics.ai/privacy

Upgrade paths

If the free scan surfaces issues worth fixing, two paid tiers go deeper:

  • Instant Audit — $49 USDC via x402. Full methodology applied programmatically to a system you submit. 5-10 page PDF report covering all four dimensions (prompt, tools, context, eval) rather than just three findings in one dimension. Listed at agent.market/archonics.
  • Full Audit — $750. Human-reviewed audit of a complete agent system. 15-25 page report tuned to your team's context. Contact audits@archonics.ai.

Contact

  • Questions, feedback, or false-positive reports: audits@archonics.ai
  • Methodology and full audit examples: archonics.ai
  • Issues with this MCP server: github.com/archonics/mcp-audit/issues

License

MIT. Use it, fork it, audit yourself.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Configuration

ANTHROPIC_API_KEY*secret

Your Anthropic API key. Required — the audit engine calls Claude directly from your machine.

Categories
AI & LLM Tools
Registryactive
Package@archonics/mcp-audit
TransportSTDIO
AuthRequired
UpdatedApr 25, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
artificer avatar
lex-oracle

artificer/lex-oracle

Deterministic, citable legislative blueprints for Slovak and Czech law. Eliminates LLM hallucinations in regulated payroll, tax, garnishment, travel, and B2B computations.
arturogarrido avatar
Claudinho

arturogarrido/claudinho

Live 2026 World Cup scores, fixtures & standings for your AI agent. No keys. Unofficial fan project.
asterpay avatar
AsterPay — EUR Settlement & Agent Trust API

asterpay/mcp-server

EUR settlement layer for AI agents. Convert USDC/EURC to EUR via SEPA Instant. **Free tools (no payment required):** - `check_agent_trust` — KYA trust score 0-100 for any Ethereum wallet - `get_trust_tier` — Trust tier classification (open/verified/trusted/enterprise) - `get_settlement_estimate` — Calculate EUR amount for USDC conversion - `discover_services` — List all available AsterPay API endpoints **Protocols:** x402, A2A, ERC-8004 **Chains:** Base, Ethereum, Solana, XRPL, Polygon, BNB Chain **Docs:** https://asterpay.io/docs
asterpay avatar
AsterPay — EUR Settlement & Agent Trust API

asterpay/mcp-server-111325bb

EUR settlement layer for AI agents. Convert USDC/EURC to EUR via SEPA Instant. **Free tools (no payment required):** - `check_agent_trust` — KYA trust score 0-100 for any Ethereum wallet - `get_trust_tier` — Trust tier classification (open/verified/trusted/enterprise) - `get_settlement_estimate` — Calculate EUR amount for USDC conversion - `discover_services` — List all available AsterPay API endpoints **Protocols:** x402, A2A, ERC-8004 **Chains:** Base, Ethereum, Solana, XRPL, Polygon, BNB Chain **Docs:** https://asterpay.io/docs
michael-kanda avatar
Knowledge

at.designare/knowledge

Knowledge Base von designare.at – Michael Kanda, Web & KI aus Wien. Semantische Suche über RAG.
atlaskos avatar
Workprotocol

atlaskos/workprotocol

Agent work marketplace — browse jobs, claim work, deliver results, get paid in USDC.