What is the Intent-Verified Development (IVD) MCP server?
28 tools that make AI write, implement, and verify structured intent — so hallucinations get caught.
How to install Intent-Verified Development (IVD)
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Environment / auth
AuthorizationrequiredsecretAPI key for the IVD hosted server. Request one at https://ivdframework.dev.
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"ivd": {
"url": "https://mcp.ivdframework.dev/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ivd": {
"serverUrl": "https://mcp.ivdframework.dev/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"ivd": {
"type": "http",
"url": "https://mcp.ivdframework.dev/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"ivd": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.ivdframework.dev/mcp"
]
}
}
}Claude Code
claude mcp add --transport http ivd https://mcp.ivdframework.dev/mcpRelated MCP servers
Tracks conversation health in real time — drift, desync, and causal collapse — for any AI agent.
View repository →