Skip to main content
Glama

Mirdan

AI Code Quality Orchestrator — deterministic quality enforcement and Haiku-proof planning for Claude Code and Cursor. 64 security and quality rules, an AI-slop detector, and a no-LLM plan verifier run locally as zero-token hooks — so cheap models can plan and build without shipping slop.

PyPI version Python 3.11+ License: MIT

uv tool install mirdan                  # Install mirdan
mirdan init --claude-code               # or --cursor
# Done. Quality enforcement is now automatic.

Works with Claude Code, Cursor IDE, and Cursor CLI. Deterministic checks — everything stays local, no external API calls.


Planning Pipeline — Haiku-proof plans

Mirdan's planning workflow is flat, grounded, and design-first — no briefs, no business ceremony. A plan is Research Notes → a Low-Level Design → atomic grounded steps, formatted so a cheap model can execute it cold and verified mechanically before you implement it.

This is the heart of the 2.3.0 (Claude Code) and 2.4.0 (Cursor) realignment. Both editors now ship native plan modes that plan with a strong model and build with a cheap one — Claude Code's opusplan (Opus plans, Sonnet/Haiku builds), Cursor's cross-model Plan Mode (build with Haiku / Composer). Mirdan supplies what makes that safe: a plan format a cheap executor won't hallucinate against, plus a deterministic, no-LLM verifier.

/plan <slug> <description>     → flat grounded plan (format_version 2) with a Low-Level Design
/plan-verify <plan-path>       → mechanical self-check (local, deterministic, no LLM)
/plan-review --stakes high <p> → escape hatch: model-judgment review on the shared rubric

The Haiku-proof format (format_version: 2)

Every Action: Edit step carries a literal anchor/replace pair — the exact existing text and its replacement — so a cheap build model applies it as a find-and-replace instead of guessing. The anchor must be unique in the target file; decisions are pre-resolved (no "TBD" / "decide later"); steps are atomic. A judgment step that can't be anchored is tagged [target: capable] and counted — so a Haiku-targeted plan that isn't fully cold-executable says so. On Claude Code the format lives in the /plan skill; on Cursor it lives in the agent-requested mirdan-planning.mdc rule that native Plan Mode reads.

What /plan-verify catches (deterministic, local, no LLM)

  • phantom_files — a step's **File:** points at a path that doesn't exist

  • dependency_errors**Depends On:** refs to missing steps, or cycles

  • vague_cross_references — "as discussed", "see above" — unresolvable by a reader

  • missing_grounding — a step missing File / Action / Details / Verify / Grounding

  • missing_edit_anchors — an Edit step without an anchor/replace pair

  • anchor_uniqueness_errors — an anchor not found, or matching more than one place in the file

  • atomicity_violations — more than one file/action per step, or compound "and then" steps

  • unresolved_decisions — "TBD" / either-or / "decide later" left in the plan

  • lld_gaps (advisory) — an [EXISTING] interface without a citation, or a [NEW] one created by no step

The Low-Level Design section is where engineering substance lives — interfaces & signatures (each tagged [NEW]/[EXISTING] with a file:line citation), an error taxonomy, and the design decisions surfaced by enhance_prompt. Subsections are applicability-gated — include one only if it applies, no "fill every heading" filler.

MCP tool

Tool

Returns

verify_plan(plan_path)

{verified, coverage_score, format_version, phantom_files, dependency_errors, vague_cross_references, missing_grounding, missing_edit_anchors, anchor_uniqueness_errors, atomicity_violations, unresolved_decisions, capable_steps, lld_gaps, summary}


Related MCP server: CloudZIR MCP Server

Deterministic + content, not a local model (2.3.0)

The local-LLM "intelligence layer" (Gemma via Ollama / llama-cpp) was removed in 2.3.0. mirdan is now deterministic checks + opinionated content — fast, dependency-light, and fully local (no model downloads, no external calls). The intelligence comes from your coding assistant's own models; mirdan supplies what they lack and rides their native mechanisms (Claude Code 2.x and Cursor 2.x plan modes, subagents, command hooks, rules/skills) instead of re-implementing them: a no-LLM plan verifier, the Haiku-proof plan format, the plan-review rubric, the AI-slop ruleset, and curated quality standards.


Why Mirdan?

AI coding assistants generate code fast, but without guardrails they produce slop: hardcoded secrets, SQL injection, placeholder functions, hallucinated imports, bare except blocks, and code that looks right but fails in production.

Mirdan fixes this by intercepting your AI workflow at two points:

  1. Before codingenhance_prompt enriches your task with quality requirements, security constraints, and framework-specific standards so the AI produces better code from the start

  2. After codingvalidate_code_quality catches what slipped through: 64 rules covering security vulnerabilities, AI-specific antipatterns, and language best practices

Once installed, it runs invisibly through IDE hooks. You just code normally.

What It Catches

Here's what mirdan flags on a single function of typical AI-generated code:

API_KEY = "sk-proj-abc123456789"           # SEC001: hardcoded API key
def get_users(user_id):
    query = f"SELECT * FROM users WHERE id={user_id}"  # SEC005 + AI008: SQL injection
    result = eval(user_input)              # PY001: code injection via eval()
    data = requests.get(url, verify=False) # SEC007: SSL verification disabled
    try:
        process(data)
    except:                                # PY003: bare except
        pass

Result: Score 0.0/1.0, 6 errors, 3 warnings. With auto-fix, mirdan resolves 5 of these automatically.

What It Adds to Your Prompts

When you ask an AI assistant to "Create a user auth endpoint in FastAPI with JWT tokens", mirdan's enhance_prompt detects this touches security and injects:

  • Framework standards: "Use Depends() with Annotated for type-safe dependency injection"

  • Security constraints: "Check that no secrets or credentials are hardcoded"

  • Quality requirements: "Use Pydantic models for all request bodies and response schemas"

  • Verification steps: "Ensure error handling covers all async operations"

The AI gets structured guidance instead of a bare prompt, producing better code on the first try.


Quick Start

Install

uv tool install mirdan                   # Install mirdan

# Optional extras:
uv tool install 'mirdan[ast]'            # + tree-sitter for TS/JS AST analysis

# Upgrade:
uv tool upgrade mirdan

# Or with pip:
pip install mirdan

Set Up Your IDE

mirdan init --claude-code    # Claude Code: hooks, rules, skills, agents
mirdan init --cursor         # Cursor: hooks, rules, AGENTS.md, BUGBOT.md
mirdan init --all            # Both IDEs

This generates everything — MCP server config, command-type quality hooks, rules files, skills, and agent definitions. After init, your IDE automatically:

  1. Validates each edited file against security + quality rules (PostToolUse hook, zero model tokens)

  2. Runs a final quality gate before the turn/task completes (Stop / TaskCompleted hooks)

  3. Surfaces the rules, skills (/plan, /code), and opt-in enhance_prompt for non-trivial work

Use From the Command Line

mirdan validate --file src/auth.py     # Validate a file
mirdan validate --staged               # Validate git staged changes
mirdan fix --file src/auth.py          # Auto-fix violations (pattern-based)
mirdan check                           # Run lint + typecheck + test
mirdan gate                            # CI/CD quality gate (exit 0 or 1)
mirdan scan --dependencies             # Check deps for known CVEs
mirdan scan --directory src/           # Discover codebase conventions

How It Works

Mirdan is an MCP server — it connects to AI coding assistants (Claude Code, Cursor, Claude Desktop, or any MCP client) and provides quality enforcement tools.

┌──────────────────────────────────────────────────┐
│  Your AI Assistant (Claude Code / Cursor / etc)  │
│                                                  │
│  1. You type a coding task                       │
│  2. AI generates code                            │
│  3. PostToolUse hook validates the edited file   │
│  4. AI fixes the flagged issues                  │
│  5. Stop hook runs the quality gate → complete   │
└──────────────────────────────────────────────────┘
         │                        ▲
         ▼                        │
┌──────────────────────────────────────────────────┐
│  Mirdan MCP Server (deterministic + content)     │
│                                                  │
│  MCP Tools:                                       │
│  enhance_prompt         → Quality requirements   │
│  validate_code_quality  → 64 deterministic rules │
│  validate_quick         → Fast security checks   │
│  get_quality_standards  → Language/framework ref  │
│  get_quality_trends     → Historical analysis    │
│  scan_dependencies      → CVE detection (OSV)    │
│  scan_conventions       → Convention discovery   │
│  verify_plan            → No-LLM plan verifier   │
└──────────────────────────────────────────────────┘

Validation Rules

Mirdan ships with 64 rules across 10 categories. No external services required — all rules run locally.

AI Quality (AI001–AI008)

Rules that catch patterns unique to AI-generated code:

Rule

What It Catches

AI001

Placeholder code — raise NotImplementedError, pass with TODO (skips @abstractmethod)

AI002

Hallucinated imports — packages not in stdlib or project dependencies

AI003

Over-engineering — unnecessary abstractions for simple operations

AI004

Duplicate code blocks

AI005

Inconsistent error handling patterns

AI006

Unnecessary heavy imports where lighter alternatives exist

AI007

Security theater — patterns that look secure but provide no protection

AI008

Injection via f-strings — SQL, eval, exec, os.system with interpolation

Security (SEC001–SEC014)

Rule

What It Catches

SEC001–003

Hardcoded secrets — API keys, passwords, AWS keys

SEC004–006

SQL injection — string concat, f-strings, template literals

SEC007

SSL/TLS verification disabled

SEC008–009

Shell command injection via string formatting

SEC010

JWT verification disabled

SEC011–013

Graph database injection — Neo4j Cypher, Gremlin

SEC014

Vulnerable dependencies — packages with known CVEs

Language-Specific

Language

Rules

Key Checks

Python

PY001–PY015

eval/exec, bare except, mutable defaults, deprecated typing, unsafe pickle/yaml, subprocess shell, dead imports, unreachable code

JavaScript

JS001–JS005

var, eval, document.write, innerHTML, child_process.exec

TypeScript

TS001–TS005

eval, Function constructor, @ts-ignore, as any, innerHTML

Go

GO001–GO003

Ignored errors, panic(), SQL via fmt.Sprintf

Java

JV001–JV007

String ==, generic Exception, System.exit, Runtime.exec, unsafe deserialization

Rust

RS001–RS002

.unwrap(), empty .expect()

Plus ARCH001–003 / TSARCH001–004 (function length, file length, nesting depth, missing return types), RAG001–002 (chunk overlap, deprecated loaders).

Python rules PY001–PY004 use AST-based validation — eliminating false positives from strings and comments. When mirdan[ast] is installed, TypeScript/JavaScript architecture checks use tree-sitter for accurate function length, nesting depth, and return type analysis.

32 rules support automatic fixes via mirdan fix.


Language and Framework Support

Languages: Python, TypeScript, JavaScript, Go, Java, Rust

33 framework standards — mirdan knows the idioms, best practices, and common pitfalls for each:

React, React Native, Next.js, Nuxt, Vue, SvelteKit, Astro, Flutter, Tailwind, FastAPI, Django, Express, NestJS, Echo, Gin, Spring Boot, Micronaut, Quarkus, Drizzle, Neo4j, Supabase, Convex, Pinecone, Qdrant, Milvus, Weaviate, ChromaDB, FAISS, LangChain, LangGraph, CrewAI, DSPy, tRPC

When enhance_prompt detects a framework, it injects framework-specific quality requirements (e.g., "Use Depends() with Annotated" for FastAPI, "Prefer server components" for Next.js).


Quality Profiles

Profiles tune enforcement levels across 8 dimensions. Choose one that matches your project:

Profile

Security

Architecture

Testing

AI Slop

Dep Security

Best For

default

0.7

0.5

0.7

0.7

0.7

General-purpose projects

startup

0.7

0.3

0.5

0.8

0.5

Moving fast with safety nets

enterprise

1.0

0.9

0.9

1.0

1.0

Production enterprise code

fintech

1.0

0.8

1.0

1.0

1.0

Financial-grade correctness

library

0.8

0.9

0.9

0.8

0.8

Public APIs and packages

data-science

0.7

0.3

0.5

0.6

0.5

Exploration with data safety

prototype

0.5

0.2

0.2

0.5

0.3

Rapid prototyping

Scale: 0.0–0.3 permissive | 0.3–0.7 moderate | 0.7–1.0 strict

mirdan init --quality-profile enterprise
mirdan profile apply fintech          # Change later
mirdan profile suggest                # Let mirdan recommend one

IDE Integration

Claude Code

mirdan init --claude-code

Generates .mcp.json, command-type hooks, rules, 4 skills (/code, /plan, /plan-review, /plan-verify), and 3 agents (quality-gate, security-audit, plan-reviewer).

Hooks are command-type — deterministic shell checks that run outside the model context (zero model tokens) and can block on failure:

Hook

Runs

PostToolUse

Validate the just-edited file (mirdan validate --quick --scope security)

Stop

Quality gate over the staged/changed set before the turn completes

TaskCompleted

Final validation gate on task completion

Quality guidance (AI/SEC rules, the planning format) lives in .claude/rules/ and the skills, not in token-spending prompt hooks. enhance_prompt is opt-in — recommended before security-sensitive, multi-file, or new-library work; validate_code_quality after writing stays the mandatory gate.

Cursor

mirdan init --cursor

Generates a complete Cursor 2.x integration:

  • Rules.cursor/rules/*.mdc (always-on, security, planning, plan-review, plan-verify, agent, language-specific) — the mirdan-planning.mdc rule carries the Haiku-proof plan format that native Plan Mode reads

  • Hooks.cursor/hooks.json with zero-token command-type hooks (validate-on-edit, shell-guard, staged-validate-on-stop), .cursor/hooks/*.sh scripts

  • Subagents.cursor/agents/*.md (quality-validator, security-scanner, plan-reviewer)

  • Skills.cursor/skills/*/SKILL.md following the Agent Skills Standard (code, plan-review)

  • Commands.cursor/commands/*.md slash commands (/code, /plan, /plan-verify, /plan-review, /automations)

  • Environment.cursor/environment.json for Cloud Agent environments

  • Config.cursor/mcp.json, AGENTS.md, BUGBOT.md

Cursor has tool slot limits. Set MIRDAN_TOOL_BUDGET to control which tools are exposed (2 = validation only, 5+ = all tools).

Claude Desktop / Any MCP Client

Add to your MCP configuration:

{
  "mcpServers": {
    "mirdan": {
      "command": "uvx",
      "args": ["mirdan"]
    }
  }
}

Enterprise Deployment

For organization-wide enforcement via managed configuration:

macOS: /Library/Application Support/ClaudeCode/managed-mcp.json Linux: /etc/claude-code/managed-mcp.json

{
  "mcpServers": {
    "mirdan": {
      "command": "uvx",
      "args": ["mirdan"]
    }
  }
}

CI/CD Integration

GitHub Actions

Add this workflow to .github/workflows/mirdan.yml:

name: Mirdan Quality Gate
on: [pull_request]

jobs:
  quality:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: astral-sh/setup-uv@v4
      - run: uv tool install mirdan
      - run: mirdan gate

SARIF Export for GitHub Code Scanning

- run: mirdan export --format sarif > results.sarif
- uses: github/codeql-action/upload-sarif@v3
  with:
    sarif_file: results.sarif

Pre-commit Hook

# .pre-commit-config.yaml
repos:
  - repo: local
    hooks:
      - id: mirdan
        name: mirdan quality gate
        entry: mirdan validate --staged --quick
        language: system
        types: [python]

Quality Badges

mirdan export --format badge > .mirdan/badge.json

Configuration

mirdan init generates .mirdan/config.yaml. Key sections:

version: "1.0"

project:
  name: "MyApp"
  primary_language: "python"
  frameworks: ["fastapi", "react"]

# Quality enforcement levels
quality:
  security: "strict"           # strict|moderate|permissive
  architecture: "moderate"
  documentation: "moderate"
  testing: "strict"

# Or use a named profile (overrides quality section)
quality_profile: "default"

# Semantic validation and dependency scanning
semantic:
  enabled: true
  analysis_protocol: "security"  # none|security|comprehensive

dependencies:
  enabled: true
  osv_cache_ttl: 86400           # 24 hours
  scan_on_gate: true
  fail_on_severity: "high"       # critical|high|medium|low|none

# Score thresholds
thresholds:
  severity_error_weight: 0.25
  severity_warning_weight: 0.08
  arch_max_function_length: 30
  arch_max_file_length: 300
  # Per-file threshold overrides (glob patterns)
  file_overrides:
    - pattern: "tests/**"
      arch_max_function_length: 60
    - pattern: "scripts/**"
      arch_max_file_length: 500

# Hook behavior
hooks:
  enabled_events: ["PostToolUse", "Stop"]
  quick_validate_timeout: 5000
  auto_fix_suggestions: true

Advanced Features

AST-Based Validation

Python rules PY001–PY004 are verified via the ast module, eliminating false positives from eval/exec in strings, bare except in comments, etc. Two additional AST rules:

  • PY014 (dead-import) — detects unused imports, respecting TYPE_CHECKING blocks, __all__, and aliased imports

  • PY015 (unreachable-code) — detects code after return/raise/break/continue, skipping finally blocks

For TypeScript/JavaScript, install the optional ast extra to enable tree-sitter parsing:

uv tool install 'mirdan[ast]'

This gives accurate function length, nesting depth, and missing return type detection instead of regex approximation. Falls back gracefully to regex when tree-sitter is not installed.

Full-File Diff Validation

When validating diffs (via hooks or validate_code_quality with input_type="diff"), mirdan reads the full file from disk when available. This enables architecture checks (function length, nesting depth) that require full-file context. Violations are filtered to changed lines only, and file-scope rules (file-too-long) are excluded from diff results.

Adaptive File-Path Thresholds

Override thresholds for specific file patterns using file_overrides in your config:

thresholds:
  arch_max_function_length: 30
  file_overrides:
    - pattern: "tests/**"
      arch_max_function_length: 60    # Tests can be longer
    - pattern: "migrations/**"
      arch_max_file_length: 1000      # Migration files are naturally long

Patterns use glob syntax and are matched against file paths. Overrides only replace the fields they specify — all other thresholds inherit from the base config.

Convention Discovery

Scan your codebase to discover implicit patterns and generate custom rules:

mirdan init --learn              # During init
mirdan scan --directory src/     # Standalone

Discovers naming patterns, import styles, docstring conventions, and recurring patterns. Generates .mirdan/rules/conventions.yaml with project-specific rules.

Dependency Vulnerability Scanning

Check dependencies against the OSV database (free, no API key required):

mirdan scan --dependencies                # Standalone scan
mirdan gate --include-dependencies        # Quality gate + vuln check

Supports PyPI, npm, crates.io, Go, and Maven. Results are cached for 24 hours. Vulnerabilities in imported packages trigger SEC014 violations during code validation.

Semantic Validation

validate_code_quality returns semantic_checks — targeted review questions generated from code patterns (SQL queries, auth logic, crypto operations, file I/O). These guide the AI to investigate specific concerns rather than doing shallow pattern matching. For security-critical code, an analysis_protocol provides structured deep-analysis steps.

Quality Forecasting

get_quality_trends analyzes validation history to track scores over time, forecast trajectory, detect regressions between sessions, and calculate pass rates.

Session Tracking and Feedback Loop

Each enhance_prompt call returns a session_id. Pass it to validate_code_quality to track quality across the full task lifecycle. Pass it back to enhance_prompt on the next call to close the feedback loop:

enhance_prompt(task)                   → session_id, enhanced_prompt
  ↓ implement code
validate_code_quality(code, session_id) → violations, session_context
  ↓ fix issues, iterate
enhance_prompt(task, session_id=...)   → persistent violations injected
                                          as priority quality requirements

When a violation recurs across two or more consecutive validations, mirdan surfaces it as a priority quality_requirement in the next enhanced prompt — ensuring the AI addresses the root cause rather than adding new code on top of broken foundations.

Multi-Agent Coordination

Hook configurations provide guardrails for autonomous agents (Cursor Background Agents, Claude Code subagents), ensuring quality enforcement without human oversight.

Cross-Project Intelligence

When combined with enyal (persistent knowledge graph MCP), mirdan stores project conventions as knowledge entries and recalls patterns across projects.

Upgrading

uv tool upgrade mirdan     # Upgrade to latest version
mirdan init --upgrade      # Regenerate IDE integration files

uv tool upgrade updates the package. mirdan init --upgrade merges new configuration fields into existing .mirdan/config.yaml, regenerates integration files, and preserves your customizations.


MCP Tools Reference

enhance_prompt

Entry point for coding tasks. Enriches a prompt with quality requirements, security constraints, and tool recommendations.

Parameters:
  prompt (required)     — The coding task description
  task_type             — generation|refactor|debug|review|test|planning|auto
  context_level         — minimal|auto|comprehensive
  max_tokens            — Token budget (0=unlimited)
  model_tier            — auto|opus|sonnet|haiku
  session_id            — Resume an existing session to thread validation
                          feedback into this prompt. Persistent violations
                          from prior validate_code_quality calls are injected
                          as priority quality requirements.

Returns:
  enhanced_prompt       — Enriched prompt with quality guidance
  detected_language     — Primary language detected
  detected_frameworks   — Frameworks to query docs for
  task_type             — Primary detected task type
  task_types            — All detected task types (compound detection). A
                          prompt like "add tests for the new feature" returns
                          ["test", "generation"] and unions verification steps
                          from both types.
  touches_security      — Whether task involves security-sensitive code
  quality_requirements  — Constraints to follow during implementation
  verification_steps    — Checklist before marking complete. Compressed to a
                          single re-validation step when a prior session passed,
                          reducing context waste on iterative work.
  tool_recommendations  — Which MCPs to call for context. Session-aware:
                          targets enyal recall to failure patterns on re-calls
                          with errors; suppresses redundant recalls after a pass.

validate_code_quality

Exit gate — validates code against quality standards. Returns score, violations, and semantic review questions.

Parameters:
  code (required)       — Code to validate
  language              — python|typescript|javascript|rust|go|java|auto
  check_security        — Enable security rules (default: true)
  check_architecture    — Enable architecture rules (default: true)
  check_style           — Enable style rules (default: true)
  severity_threshold    — error|warning|info
  input_type            — code|diff|compare
  session_id            — Session ID from enhance_prompt

Returns:
  passed                — Whether validation passed
  score                 — Quality score (0.0–1.0)
  violations            — List of rule violations with details. Each violation
                          includes verifiable: false when the check is
                          pattern-based (AI001–AI008) rather than AST-verified,
                          so the AI knows to confirm semantically before fixing.
  semantic_checks       — Targeted review questions from code patterns
  summary               — Human-readable summary

validate_quick

Fast security-only validation (<500ms) for hook integration. Runs SEC001–SEC014, AI001, and AI008.

get_quality_standards

Look up quality standards for a language/framework combination.

Quality score trends and forecasting from validation history.

scan_dependencies

Scan project dependencies for known vulnerabilities via the OSV database.

scan_conventions

Discover implicit codebase conventions and generate custom rules.


CLI Reference

Command

Purpose

mirdan serve

Start the MCP server (default)

mirdan init

Initialize project — generates config, hooks, rules, IDE integrations

mirdan validate

Validate code quality (--file, --staged, --stdin, --diff, --quick)

mirdan gate

Quality gate for CI/CD (--include-dependencies for vuln check)

mirdan fix

Auto-fix violations (--dry-run, --auto, --staged)

mirdan check

Run lint + typecheck + test

mirdan scan

Discover conventions (--directory) or scan deps (--dependencies)

mirdan profile

Manage quality profiles (list, suggest, apply)

mirdan export

Export results (--format sarif|badge|json)

mirdan report

Quality reports (--session, --compact-state, --format)

mirdan standards

View quality standards for a language

mirdan checklist

View verification checklists for a task type

mirdan plugin

Plugin export for standalone distribution


Troubleshooting

Server Not Connecting

  1. Check uvx is available: uvx --version

  2. Test server manually: uvx mirdan (should start without errors)

  3. Check status in Claude Code: /mcp

Debug Logging

{
  "mcpServers": {
    "mirdan": {
      "command": "uvx",
      "args": ["mirdan"],
      "env": { "FASTMCP_DEBUG": "true" }
    }
  }
}

Common Issues

Issue

Solution

command not found: uvx

Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh

command not found: mirdan

uv tool install mirdan

Server starts but no tools appear

Restart your IDE after config changes

Python version error

Ensure Python 3.11+ is installed

Hook not firing

Check hook stringency level — MINIMAL only fires on 2 events

Tool budget limiting tools

Set MIRDAN_TOOL_BUDGET=5 or remove the env var


Development

git clone https://github.com/S-Corkum/mirdan.git
cd mirdan
uv sync --all-extras         # Includes tree-sitter for TS/JS AST
uv run pytest                # 3050+ tests
uv run mirdan                # Run server locally

License

MIT

Available Tools

7 tools
analyze_intentB

Analyze a prompt without enhancement, returning the detected intent, entities, and recommended approach.

Args: prompt: The developer prompt to analyze

Returns: Structured intent analysis

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions the tool analyzes a prompt and returns structured intent analysis, but doesn't disclose behavioral traits such as whether it's read-only, requires authentication, has rate limits, or what happens with invalid inputs. This is a significant gap for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, with the core purpose stated first. The additional details about args and returns are useful but could be more integrated. There's no wasted text, though it could be slightly more polished for optimal clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (1 parameter, no annotations, but has an output schema), the description is minimally complete. It covers the purpose and basic I/O, but lacks details on behavior, error handling, or how it differs from siblings. The presence of an output schema reduces the need to explain return values, but more context is needed for full understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds minimal semantics beyond the input schema: it defines 'prompt' as 'The developer prompt to analyze'. With 0% schema description coverage and only 1 parameter, this provides some value, but it's basic and doesn't elaborate on format, constraints, or examples. The baseline is 3 since the schema covers the parameter structure adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Analyze a prompt without enhancement, returning the detected intent, entities, and recommended approach.' This specifies the verb (analyze), resource (prompt), and output (intent, entities, approach). However, it doesn't explicitly differentiate from sibling tools like 'enhance_prompt' or 'suggest_tools', which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by mentioning 'without enhancement' and listing output components, suggesting it's for raw analysis rather than enhancement. However, it lacks explicit guidance on when to use this tool versus alternatives like 'enhance_prompt' or 'suggest_tools', and doesn't specify prerequisites or exclusions, leaving some ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

enhance_promptA

Automatically enhance a coding prompt with quality requirements, codebase context, and tool recommendations.

Args: prompt: The original developer prompt task_type: Override auto-detection (generation|refactor|debug|review|test|planning|auto) context_level: How much context to gather (minimal|auto|comprehensive)

Returns: Enhanced prompt with quality requirements and tool recommendations

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYes
task_typeNoauto
context_levelNoauto

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the tool's behavior by describing what it adds ('quality requirements, codebase context, and tool recommendations') and mentions auto-detection and context levels. However, it lacks details on permissions, rate limits, or error handling, leaving gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, starting with a clear purpose statement. The Args and Returns sections are structured efficiently, with each sentence adding value without redundancy. It avoids unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (3 parameters, no annotations, but with an output schema), the description is fairly complete. It covers the tool's purpose, parameters, and return value. The output schema reduces the need to explain returns in detail, but more behavioral context could be added for a tool with no annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0%, so the description must compensate. It adds meaning by explaining each parameter's purpose: 'prompt' as the original input, 'task_type' with enum values and override function, and 'context_level' with options. This goes beyond the bare schema, though it could provide more detail on enum semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('enhance a coding prompt') and resources ('quality requirements, codebase context, and tool recommendations'). It distinguishes from siblings like 'analyze_intent' or 'get_quality_standards' by focusing on prompt enhancement rather than analysis or standards retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through the mention of 'auto-detection' and parameter defaults, but does not explicitly state when to use this tool versus alternatives like 'suggest_tools' or 'validate_code_quality'. It provides some context but lacks clear exclusions or named alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_quality_standardsC

Retrieve quality standards for a language/framework combination.

Args: language: Programming language (typescript, python, etc.) framework: Optional framework (react, fastapi, etc.) category: Filter to specific category (security|architecture|style|all)

Returns: Quality standards for the specified language/framework

ParametersJSON Schema
NameRequiredDescriptionDefault
languageYes
frameworkNo
categoryNoall

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions what the tool returns but doesn't describe important behavioral aspects like whether it's read-only, if it requires authentication, rate limits, error conditions, or pagination behavior. The description is minimal and lacks operational context needed for safe invocation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (purpose, Args, Returns) and uses minimal sentences. Each section earns its place by providing essential information without redundancy. However, the Args section could be more integrated with the main description rather than appearing as a separate block.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (which handles return values) and moderate complexity with 3 parameters, the description is minimally adequate. It covers basic purpose and parameters but lacks important context about behavioral traits, usage guidelines, and detailed parameter semantics that would make it complete for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description lists parameters in the Args section with brief explanations, but with 0% schema description coverage, it doesn't fully compensate. It provides basic meaning for 'language', 'framework', and 'category' but lacks details on format constraints, valid values beyond examples, or how parameters interact. The schema shows defaults and requirements, but the description adds only marginal semantic value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Retrieve') and resource ('quality standards for a language/framework combination'). It distinguishes from siblings like 'validate_code_quality' by focusing on retrieval rather than validation. However, it doesn't explicitly contrast with 'get_verification_checklist' which might have overlapping retrieval functionality.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_verification_checklist' or 'validate_code_quality' that might serve similar purposes, nor does it specify prerequisites, constraints, or appropriate contexts for usage beyond the basic parameter requirements.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_verification_checklistB

Get a verification checklist for a specific task type.

Args: task_type: Type of task (generation|refactor|debug|review|test) touches_security: Whether the task involves security-sensitive code

Returns: Verification checklist appropriate for the task

ParametersJSON Schema
NameRequiredDescriptionDefault
task_typeYes
touches_securityNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'Returns: Verification checklist appropriate for the task,' which implies a read-only operation, but doesn't disclose critical traits like whether it's idempotent, has rate limits, requires authentication, or what format the checklist returns. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, starting with the core purpose. The 'Args' and 'Returns' sections add necessary details without redundancy. However, the structure could be slightly improved by integrating the parameter explanations more seamlessly, and the second sentence ('Args:...') feels slightly detached, but overall it's efficient with minimal waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no annotations, but with an output schema), the description is reasonably complete. It explains the purpose, parameters, and return value, and the presence of an output schema means it doesn't need to detail return values further. However, it lacks behavioral context (e.g., error handling or usage scenarios), which slightly reduces completeness for a tool with no annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics beyond the schema by explaining that 'task_type' includes specific values (generation|refactor|debug|review|test) and 'touches_security' indicates 'Whether the task involves security-sensitive code.' This clarifies parameter purposes and constraints, though it doesn't cover all possible nuances like default behavior for 'touches_security' (which the schema sets to false).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a verification checklist for a specific task type.' It specifies the verb ('Get') and resource ('verification checklist'), and distinguishes it from sibling tools like 'get_quality_standards' or 'validate_code_quality' by focusing on task-specific checklists rather than general standards or validation. However, it doesn't explicitly differentiate from all siblings, such as 'suggest_tools', which might also relate to task guidance.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for selection, or exclusions, and fails to reference sibling tools like 'get_quality_standards' or 'validate_plan_quality' that might overlap in purpose. Usage is implied only by the tool's name and description, with no explicit when/when-not instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

suggest_toolsA

Suggest which MCP tools should be used for a given intent.

Args: intent_description: Description of what you're trying to do available_mcps: Comma-separated list of available MCPs (optional) discover_capabilities: If True, query actual MCP capabilities for recommended MCPs

Returns: Tool recommendations with priorities and reasons

ParametersJSON Schema
NameRequiredDescriptionDefault
intent_descriptionYes
available_mcpsNo
discover_capabilitiesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that the tool returns 'tool recommendations with priorities and reasons,' which adds some context about output behavior. However, it lacks details on permissions, rate limits, or error handling, leaving gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a purpose statement, arg explanations, and return details, all in a compact format. Every sentence adds value, though the arg descriptions could be slightly more integrated into the flow rather than listed separately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, no annotations, and the presence of an output schema (which handles return values), the description is fairly complete. It covers purpose, parameters, and output behavior adequately, though it could benefit from more behavioral context like error cases or usage examples.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It provides clear semantics for all three parameters: intent_description explains its purpose, available_mcps notes it's optional and comma-separated, and discover_capabilities describes its boolean nature and effect. This adds significant value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('suggest') and resource ('MCP tools'), and it distinguishes itself from siblings by focusing on tool recommendation rather than analysis, enhancement, or validation. The phrase 'for a given intent' establishes its unique role in the toolset.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when determining which tools to use for an intent, but it doesn't explicitly state when to use this tool versus alternatives like analyze_intent or get_quality_standards. No exclusions or clear alternatives are provided, leaving usage context somewhat vague.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

validate_code_qualityB

Validate generated code against quality standards.

Args: code: The code to validate language: Programming language (python|typescript|javascript|rust|go|auto) check_security: Validate against security standards check_architecture: Validate against architecture standards check_style: Validate against language-specific style standards severity_threshold: Minimum severity to include in results (error|warning|info)

Returns: Validation results with pass/fail, score, violations, and summary

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYes
languageNoauto
check_securityNo
check_architectureNo
check_styleNo
severity_thresholdNowarning

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions validation against standards but doesn't describe what happens during validation (e.g., external calls, processing time), error handling, or output format details beyond the basic return statement. This leaves significant gaps for a tool with 6 parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized but not optimally structured. The initial sentence is clear, but the parameter and return sections are listed without integration into a cohesive narrative. While efficient, it could be more front-loaded with key usage context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters, no annotations) and the presence of an output schema, the description is moderately complete. It covers parameter semantics well but lacks behavioral context and usage guidelines. The output schema likely details return values, reducing the need for that in the description, but overall gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds substantial meaning beyond the input schema, which has 0% description coverage. It explains each parameter's purpose (e.g., 'code: The code to validate,' 'check_security: Validate against security standards'), including enum values for 'language' and 'severity_threshold.' This compensates well for the schema's lack of documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as 'Validate generated code against quality standards,' which is a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'validate_plan_quality' or 'get_quality_standards,' leaving some ambiguity about when to choose this tool over alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus its siblings. It doesn't mention alternatives like 'validate_plan_quality' for non-code validation or 'get_quality_standards' for retrieving standards, nor does it specify prerequisites or contextual constraints for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

validate_plan_qualityA

Validate a plan for implementation by a less capable model. Returns a quality score and list of issues that need fixing.

Args: plan: The plan text to validate target_model: Model that will implement (haiku|flash|cheap|capable) Cheaper models require stricter plan quality.

Returns: Quality scores, issues list, and ready_for_cheap_model flag

ParametersJSON Schema
NameRequiredDescriptionDefault
planYes
target_modelNohaiku

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses key behavioral traits: it returns a quality score, issues list, and a 'ready_for_cheap_model' flag, which adds context beyond basic validation. However, it lacks details on error handling, rate limits, or authentication needs, which are important for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, starting with the core purpose. The 'Args' and 'Returns' sections are structured clearly, but the note about 'cheaper models require stricter plan quality' could be integrated more smoothly. Overall, it's efficient with minimal waste, though minor improvements in flow could elevate it to a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (2 parameters, no annotations, but with an output schema), the description is fairly complete. It explains the purpose, parameters, and return values, and the output schema likely covers return details, so the description doesn't need to elaborate further. However, it could benefit from more context on how validation works or links to sibling tools, keeping it from a perfect score.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds significant meaning beyond the input schema, which has 0% description coverage. It explains that 'plan' is 'The plan text to validate' and 'target_model' specifies the model that will implement, with options like 'haiku|flash|cheap|capable' and the note that 'cheaper models require stricter plan quality.' This compensates well for the schema's lack of descriptions, though it doesn't detail all possible enum values or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Validate a plan for implementation by a less capable model.' It specifies the verb ('validate') and resource ('plan'), and distinguishes it from siblings like 'validate_code_quality' by focusing on plan validation rather than code. However, it doesn't explicitly differentiate from all siblings (e.g., 'get_verification_checklist'), so it falls short of a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by mentioning 'less capable model' and that 'cheaper models require stricter plan quality,' which suggests when to use it based on target model constraints. However, it doesn't explicitly state when to use this tool versus alternatives like 'get_quality_standards' or 'suggest_tools,' nor does it provide exclusions or prerequisites, leaving some ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv1.0.0
    • First observedanalyze_intent
    • First observedenhance_prompt
    • First observedget_quality_standards
    • First observedget_verification_checklist
    • First observedsuggest_tools
    • First observedvalidate_code_quality
    • First observedvalidate_plan_quality

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap. analyze_intent detects intent, enhance_prompt improves prompts, get_quality_standards retrieves standards, get_verification_checklist provides checklists, suggest_tools recommends tools, validate_code_quality validates code, and validate_plan_quality validates plans. The boundaries are well-defined and unambiguous.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with clear, descriptive names. The naming convention is uniform throughout: analyze_intent, enhance_prompt, get_quality_standards, get_verification_checklist, suggest_tools, validate_code_quality, and validate_plan_quality. There are no deviations or mixed styles.

Tool Count5/5

With 7 tools, the count is well-scoped for the server's purpose of prompt analysis, enhancement, and quality validation. Each tool earns its place by covering distinct aspects of the workflow, from intent analysis to code and plan validation, without being excessive or insufficient.

Completeness5/5

The tool surface provides complete coverage for the domain of developer prompt and code quality management. It includes analysis, enhancement, standards retrieval, verification, tool suggestion, and validation for both code and plans, ensuring no dead ends and supporting a full lifecycle from prompt to implementation.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    An enterprise-grade MCP server providing integrated system prompts and context management for consistent AI behavior across development and infrastructure tasks. It enables users to access specialized prompts for code quality standards and security-first deployment guidance.
    -
  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that uses Claude 3.5 Sonnet to transform ordinary prompts into structured, professionally engineered instructions for any LLM. It enhances AI interactions by adding context, requirements, and structural clarity to raw user inputs.
    1
    3
    MIT

Latest Blog Posts

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/S-Corkum/mirdan'

If you have feedback or need assistance with the MCP directory API, please join our Discord server