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.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Intent Verified Development (IVD)
Intent Verified Development (IVD) logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 9:12:34 PM

Intent Verified Development (IVD)

User RatingsBe the first to rate and review this MCP server! 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 RepositoryVisit Website

28 tools that make AI write, implement, and verify structured intent β€” so hallucinations get caught.

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
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "intent-verified-development-ivd": {
      "command": "uvx",
      "args": [
        "ivd-mcp"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

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

Documentation Overview

Intent-Verified Development (IVD)
A framework where AI writes the intent, implements against it, and verifies β€” so hallucinations are caught and turns drop to one.

License Version Python 3.12 MCP Compatible Tests

β†’ ivdframework.dev β€” full docs, hosted server, and access request

New here? Start with judgment_explained.md β€” a 5-minute, plain-English on-ramp that explains what problem the Judgment phase solves and how, before you read the spec.


The Problem

AI agents hallucinate not because they're bad β€” but because you're feeding the wrong knowledge system.

Research shows LLMs rely primarily on contextual knowledge (the prompt) over parametric knowledge (training data) β€” but only when the context is structured and precise (Huang et al., ICLR 2024; 9-LLM contextual vs. parametric study, 2024). When you give vague prose β€” a PRD, a user story, a chat message β€” the context channel is underloaded. The model fills the gaps from training. Those gaps are the hallucinations.

server.ts
Without IVD                              With IVD

You: "Add CSV export"                    You: "Add CSV export for compliance"
AI:  [builds with wrong columns]         AI:  [writes intent.yaml with constraints]
You: "No, these columns, ISO dates"      You:  "Yes, that's what I meant"
AI:  [rewrites, still wrong]             AI:  [implements, verifies against constraints]
You: "Still not right..."                You:  "Done. First try."
  Many turns. Many hallucinations.         One turn. Mismatches caught by the constraint check, not by you.

IVD saturates the contextual channel with structured, verifiable intent β€” so the model has nothing to guess.


Quick Start

Works locally. No API key required. Under 5 minutes.

0. See it work first (30 seconds, no setup)

bash
git clone https://github.com/leocelis/ivd.git && cd ivd
python3 examples/intent_demo/run_demo.py

Runs offline. Shows a vague prompt producing a hallucinated implementation, then the same request run against a structured intent artifact β€” with the constraint check catching the mismatch before you'd ever see it. This is the core loop this README is about; everything below is how to wire it into your own agent.

1. Clone and setup

bash
git clone https://github.com/leocelis/ivd.git
cd ivd
./mcp_server/devops/setup.sh    # creates .venv, installs all deps

2. Add to your IDE

Important: command must point at the venv's Python β€” setup.sh installs IVD's dependencies into .venv/, not your system Python. Using "command": "python" here will fail with ModuleNotFoundError. Replace /path/to/ivd with your actual clone path.

Cursor (Settings β†’ Features β†’ MCP):

config.json
{
  "servers": {
    "ivd": {
      "type": "stdio",
      "command": "/path/to/ivd/.venv/bin/python",
      "args": ["-m", "mcp_server.server"],
      "cwd": "/path/to/ivd"
    }
  }
}

VS Code / GitHub Copilot (.vscode/mcp.json):

config.json
{
  "mcpServers": {
    "ivd": {
      "command": "/path/to/ivd/.venv/bin/python",
      "args": ["-m", "mcp_server.server"],
      "cwd": "/path/to/ivd"
    }
  }
}

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

config.json
{
  "mcpServers": {
    "ivd": {
      "command": "/path/to/ivd/.venv/bin/python",
      "args": ["-m", "mcp_server.server"],
      "cwd": "/path/to/ivd"
    }
  }
}

A pyproject.toml now ships in the repo (pip install . or pip install -e . gives you an ivd-mcp console command). A PyPI release (uvx ivd-mcp, no clone required) is planned β€” see ROADMAP.md.

3. Use it

Ask your AI agent to use IVD tools. For example:

  • "Use ivd_get_context to learn about the IVD framework"
  • "Use ivd_scaffold to create an intent for my user authentication module"
  • "Use ivd_validate to check my intent artifact"

That's it. 32 of 33 tools work immediately with zero configuration β€” only ivd_search needs an OPENAI_API_KEY.

4. Enable semantic search (optional)

ivd_search requires embeddings. Generate them once (~$0.01, under a minute):

server.ts
export OPENAI_API_KEY=your-key
./mcp_server/devops/embed.sh

How It Works

Code
1. You describe      β†’  what you want (natural language)
2. AI writes         β†’  structured intent artifact (YAML with constraints and tests)
3. You review        β†’  "Is this what I meant?" (clarification before code)
4. AI stress-tests   β†’  edge cases, gaps, assumptions, constraint conflicts
5. AI implements     β†’  constraint-segmented (group β†’ implement β†’ re-read β†’ verify β†’ next)
6. AI verifies       β†’  full sweep: does every constraint pass?

The key insight: clarification happens at the intent stage, not after code. The AI writes a verifiable contract, you approve it, then implementation is mechanical β€” and self-verifying.


MCP Tools

33 tools available to any MCP-compatible AI agent (19 core + 10 Judgment tools (8 added in v3.0; ivd_judgment_check_installed and ivd_judgment_resolve added in v3.1) + 4 Canon tools added in v3.1):

Core (19)

ToolWhat it does
ivd_get_contextLoad framework principles, cookbook, or cheatsheet
ivd_searchSemantic search across all IVD knowledge
ivd_validateValidate an intent artifact against IVD rules
ivd_review_intentRank constraints by risk before implementation (human review gate)
ivd_run_constraint_testsOpt-in runner for allowlisted pytest nodes referenced by an intent
ivd_attestProcess-attestation gate β€” check the agent actually followed the method (segmentation, re-read, coverage, joint satisfaction), not just that the artifact is well-formed
ivd_import_specParse a GitHub Spec Kit or OpenSpec spec.md into a constraint scaffold
ivd_scaffoldGenerate a new intent artifact from a template
ivd_initInitialize IVD in an existing project
ivd_assess_coverageScan a project and report intent coverage
ivd_load_recipeLoad a specific recipe pattern
ivd_list_recipesBrowse all available recipes
ivd_load_templateLoad an intent or recipe template
ivd_find_artifactsDiscover intent artifacts in a project
ivd_check_placementVerify artifact naming and placement
ivd_list_featuresDerive feature inventory from intent metadata
ivd_propose_inversionsGenerate inversion opportunities
ivd_discover_goalHelp users who don't know what to ask
ivd_teach_conceptExplain concepts before writing intent

Judgment Phase (10) β€” dormant unless <project_root>/.judgment/ exists

New to Judgment? Read judgment_explained.md first β€” plain-English "what problem it solves and how" in 5 minutes β€” then the tool table below and the runnable showcase further down will make immediate sense.

ToolWhat it does
ivd_judgment_initBootstrap .judgment/ folder + per-domain baselines
ivd_judgment_captureWrite a raw correction ledger entry (< 30s)
ivd_judgment_codifyReturn a structured codify prompt for the agent
ivd_judgment_save_codifiedPersist the agent's filled codify fields
ivd_judgment_pairCapture a comparison_pair (Pearl Rung-1 alternative to A/B)
ivd_judgment_detect_patternsCluster ledger entries into patterns
ivd_judgment_inject_contextPrioritized judgment context for downstream agents
ivd_judgment_propose_recommendationDraft recommendation against a pattern (with build/buy/hire/partner sub-types)
ivd_judgment_resolveClose the loop: record an entry's resolution (outcome, whether it held) and move it codified|paired β†’ resolved, so future runs don't re-derive a settled diagnosis. (v3.1)
ivd_judgment_check_installedDetect whether <project_root>/.judgment/ exists. Never writes to disk β€” returns the ready-to-call init payload the agent must offer to the user with explicit permission. (v3.1)

Architecture (v3.1): substance lives in the ivd/judgment/ engine package (typed @dataclass schemas; engine_version + reproducible SHA-256 hash on Pattern and InjectionResult for diffability and audit). mcp_server/tools/judgment.py is a thin facade that dispatches to the engine. Mirrors the Canon (Phase 0) architecture for symmetry. Server-level kill switch: IVD_JUDGMENT_TOOLS_ENABLED=false.

See it work. A runnable showcase walks through the full Judgment loop end-to-end β€” capture three real-world AI corrections, codify them, promote a Pattern, and watch the same LLM (gpt-4o-mini, temperature=0) generate different code on the same request after the Pattern enters its system message. No trust required β€” run it, read the terminal.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • FTX MCP β€” FactoryTalk Optix MCP Server logoFTX MCP β€” FactoryTalk Optix MCP Server

    MCP server for FactoryTalk Optix: author, preview, and verify Studio changes via the emulator.

    πŸ’» Developer Tools1 views
    Compare vs FTX MCP β€” FactoryTalk Optix MCP Server β†’
  • Coder logoCoder

    Manage Coder workspaces, templates, and cloud development environments

    πŸ’» Developer Tools0 views
    Compare vs Coder β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Intent Verified Development (IVD)

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "intent-verified-development-ivd": { "command": "npx", "args": ["-y", "Intent-Verified Development (IVD)"] } }

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 PreviewIntent Verified Development (IVD) AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/intent-verified-development-ivd?style=directory)](https://allmcps.com/mcp/intent-verified-development-ivd)
HTML Embed
<a href="https://allmcps.com/mcp/intent-verified-development-ivd"><img src="https://allmcps.com/api/badge/intent-verified-development-ivd?style=directory" alt="Intent Verified Development (IVD) on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimePython
Last updatedSep 7, 2026
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).
36Quality signal: Fair Β· 36/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 & tools16/30
Adoption & activity1/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.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge 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 Intent Verified Development (IVD) β†’Install in Claude DesktopInstall in CursorInstall in VS Code