Fact MCP Tool
MCP server for fact mcp tool
What is Fact MCP Tool?
Fact MCP Tool is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for fact mcp tool
MCP server for fact mcp tool
This server falls under the Knowledge & Memory category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- MCP server for fact mcp tool
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx fact-mcp-toolConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Fact MCP Tool
Fact MCP Tool (FactCheckr) is a Python-based MCP server that provides AI-powered fact-checking capabilities to LLM agents. It exposes a fact-checking tool that accepts a claim, runs it through an AI model, and returns a verdict, confidence score, and supporting evidence — enabling agents to verify statements before presenting them to users.
Prerequisites
- Python 3.8 or newer
- pip package manager
- An MCP-compatible AI client such as Claude Desktop or Claude Code
- Internet access for AI-powered claim verification
Install FactCheckr from PyPI
Install the factcheckr package globally or in a virtual environment. This installs both the CLI tool and the MCP server.
pip install factcheckrVerify the installation
Confirm the package installed correctly by checking the version and running a quick fact-check from the command line.
factcheckr --version
factcheckr "The Earth orbits the Sun"Test JSON output mode
The MCP server returns structured JSON results. Test this mode to confirm the output format before connecting an AI client.
factcheckr "Water boils at 100 degrees Celsius" --jsonClone the repository and start the MCP server
Clone the repository to access the MCP server entry point and start it so your AI client can connect.
git clone https://github.com/geno543/fact_MCP_tool.git
cd fact_MCP_tool
pip install -r requirements.txt
python server.pyAdd the server to your MCP client config
Register the fact-checking MCP server with your AI client by adding it to the mcpServers section of your config file.
Fact MCP Tool Examples
Client configuration
Claude Desktop configuration that starts the FactCheckr MCP server using Python directly from the cloned repository.
{
"mcpServers": {
"fact-mcp-tool": {
"command": "python",
"args": ["/path/to/fact_MCP_tool/server.py"]
}
}
}Prompts to try
Use these prompts to have your AI agent fact-check claims through the MCP server.
- "Use the fact checker to verify: 'The Great Wall of China is visible from space'"
- "Fact-check this claim and give me the confidence score: 'Lightning never strikes the same place twice'"
- "Check whether it's true that humans only use 10% of their brain"
- "Verify this statement and return JSON output: 'Diamonds are the hardest natural material'"Troubleshooting Fact MCP Tool
factcheckr command not found after pip install
The pip scripts directory may not be in your PATH. Run python -m factcheckr instead, or add the pip scripts directory to your PATH. On macOS/Linux this is typically ~/.local/bin; on Windows it is %APPDATA%\Python\Scripts.
Fact-check returns low confidence or incorrect verdicts
The tool uses AI models that may not have up-to-date information. For time-sensitive claims, use the --verbose flag to inspect the evidence returned. The fallback system handles common well-known facts when AI is unavailable.
MCP server fails to start from the cloned repository
Ensure all dependencies are installed with pip install -r requirements.txt. If server.py is not found, check the repository structure — the entry point file may be named differently. Check the repository's README for the exact command.
Frequently Asked Questions about Fact MCP Tool
What is Fact MCP Tool?
Fact MCP Tool is a Model Context Protocol (MCP) server that mcp server for fact mcp tool It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Fact MCP Tool?
Follow the installation instructions on the Fact MCP Tool GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Fact MCP Tool?
Fact MCP Tool works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Fact MCP Tool free to use?
Yes, Fact MCP Tool is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Fact MCP Tool Alternatives — Similar Knowledge & Memory Servers
Looking for alternatives to Fact MCP Tool? Here are other popular knowledge & memory servers you can use with Claude, Cursor, and VS Code.
MemPalace
★ 52.6kA local AI memory system that stores all conversations verbatim and organizes them into navigable structures. It provides 19 MCP tools for AI assistants to search and retrieve past decisions, debugging sessions, and architecture debates automatically
Kratos
★ 25.7k🏛️ Memory System for AI Coding Tools - Never explain your codebase again. MCP server with perfect project isolation, 95.8% context accuracy, and the Four Pillars Framework.
Context Mode
★ 15.4kAn MCP server that preserves LLM context by intercepting large data outputs and returning only concise summaries or relevant sections. It enables efficient sandboxed code execution, file processing, and documentation indexing across multiple programm
Memu
★ 13.7kMemory for 24/7 proactive agents like OpenClaw.
MemOS
★ 9.3kMemOS (Memory Operating System) is a memory management operating system designed for AI applications. Its goal is: to enable your AI system to have long-term memory like a human, not only remembering what users have said but also actively invoking, u
Everos
★ 5.4kBuild, evaluate, and integrate long-term memory for self-evolving agents.
Browse More Knowledge & Memory MCP Servers
Explore all knowledge & memory servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Fact MCP Tool in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Fact MCP Tool?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.