This server validates your MCP code and documentation against the official spec to catch technical inaccuracies before they ship. It exposes four tools: check_mcp_claim for multi-part validation with compound claim decomposition, check_mcp_quick_fact for yes/no verification, search_spec for semantic lookups across specification versions, and list_spec_versions to see what's available. There's also a migrate-mcp-content prompt that walks you through updating content between spec versions (draft, 2025-06-18, 2024-11-05, etc.). Under the hood it uses OpenAI embeddings for semantic search and AI validation with confidence scoring. Reach for this when writing tutorials, maintaining MCP libraries, or migrating to newer spec versions. Requires an OpenAI API key and supports OpenTelemetry tracing to Arize Phoenix for observability.
An MCP Server for validating code or content against the official Model Context Protocol (MCP) specification to ensure technical accuracy and prevent the spread of misinformation.
📦 View in MCP Registry - Available in the official MCP Registry
📋 View Project Roadmap - See planned features and development progress
🏗️ Design Documentation - Technical design and implementation details
The MCP Fact-Check MCP Server helps ensure technical accuracy when coding or writing about MCP by comparing content against official specifications. It uses:
check_mcp_claim - Comprehensive validation of MCP-related content
check_mcp_quick_fact - Quick fact-checking for single MCP claims
search_spec - Searches MCP specifications using semantic similarity
list_spec_versions - Lists available MCP specification versions
migrate-mcp-content - Guides content migration between MCP specification versions
Parameters:
current_version (required): Source MCP specification version (e.g., "2024-11-05", "2025-06-18")target_version (required): Target MCP specification version to migrate to (e.g., "draft")update_scope (optional): Determines how aggressive the migration should be
critical_only: Fix only critical inaccuracies and breaking changes (minimal changes)enhancement_focused: Fix issues and improve clarity, align with best practicescomprehensive: Complete review with all improvements and enhanced claritycomprehensiveThe MCP Fact-Check server is available through the Model Context Protocol registry. Install it directly from your MCP client:
For Claude Desktop and other MCP clients:
That's it! The server will be automatically configured and ready to use.
For developers: If you need to build from source or contribute to the project, see INSTALL.md for development setup instructions.
For a beautiful, AI-focused trace visualization UI, set up Arize Phoenix:
# Install Phoenix
pipx install arize-phoenix
# Start Phoenix server
phoenix serve
{
"mcpServers": {
"mcp-factcheck": {
"command": "/path/to/bin/mcp-factcheck-server",
"args": [
"--data-dir",
"/path/to/data/embeddings",
"--telemetry",
"--otlp-endpoint",
"http://localhost:6006"
],
"env": {
"OPENAI_API_KEY": "your-api-key"
}
}
}
}
What you'll see in Phoenix:
Phoenix is specifically designed for AI/ML observability and provides a much more user-friendly experience than traditional tracing tools.
# Build all components
go build -o bin/mfc ./cmd/server
go build -o bin/specloader ./utils/cmd
# Run tests
go test ./...
The project includes pre-extracted MCP specifications and embeddings for all versions. To check when the draft specification was last updated, see data/SPEC_METADATA.json:
# View draft update information
cat data/SPEC_METADATA.json | jq '.specs.draft'
To update the draft specification:
./bin/specloader spec --version draft
./bin/specloader embed --version draft
./bin/specloader embed --version draft-fine
To add a new specification version:
./bin/specloader spec --version 2025-12-15
./bin/specloader embed --version 2025-12-15
./bin/specloader embed --version 2025-12-15-fine
All specification extraction dates and source commits are automatically tracked in data/SPEC_METADATA.json.
Test the server using the included test client:
# Build test client
go build -o bin/factcheck-curl ./cmd/factcheck-curl
# Test tools
./bin/factcheck-curl --cmd ./bin/mfc --data-dir ./data/embeddings tools/list
./bin/factcheck-curl --cmd ./bin/mfc --data-dir ./data/embeddings tools/call validate_content '{"content":"MCP is a protocol"}'
# Test prompts
./bin/factcheck-curl --cmd ./bin/mfc --data-dir ./data/embeddings prompts/list
# Get migration prompt with minimal parameters
./bin/factcheck-curl --cmd ./bin/mfc --data-dir ./data/embeddings prompts/get migrate-mcp-content '{"current_version":"2024-11-05","target_version":"draft"}'
# Get migration prompt with all parameters
./bin/factcheck-curl --cmd ./bin/mfc --data-dir ./data/embeddings prompts/get migrate-mcp-content '{
"current_version": "2024-11-05",
"target_version": "2025-06-18",
"update_scope": "critical_only"
}'
See DESIGN.md for the complete architecture documentation.
OPENAI_API_KEY - Required for embedding generation and content validationGITHUB_TOKEN - Optional, for higher GitHub API rate limits when extracting specsMIT License. See LICENSE for details.
OPENAI_API_KEY*OpenAI API key for embedding generation and content validation
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp