Keiro Mcp Pyt — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Keiro Mcp Pyt (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<p align="center"> <img src="https://keiro.dev/logo.svg" width="80" alt="KEIRO Logo" /> </p>
<h1 align="center">KEIRO MCP Server (Python)</h1>
<p align="center"> <strong>Give your AI agents the power of real-time web intelligence</strong> </p>
<p align="center"> <a href="https://pypi.org/project/keiro-mcp"><img src="https://img.shields.io/pypi/v/keiro-mcp?style=flat-square&color=00d4ff" alt="PyPI version" /></a> <a href="https://pypi.org/project/keiro-mcp"><img src="https://img.shields.io/pypi/pyversions/keiro-mcp?style=flat-square" alt="Python versions" /></a> <a href="https://github.com/keiro-labs/keiro-mcp-python/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License" /></a> <a href="https://keiro.dev"><img src="https://img.shields.io/badge/docs-keiro.dev-black?style=flat-square" alt="Docs" /></a> </p>
<p align="center"> <a href="#installation">Installation</a> • <a href="#configuration">Configuration</a> • <a href="#tools">Tools</a> • <a href="#examples">Examples</a> </p>
This is the official Model Context Protocol (MCP) server for the KEIRO API, written in Python. It enables AI assistants like Claude to search the web, conduct deep research, extract web content, and get AI-powered answers—all in real-time.
pip install keiro-mcpuv add keiro-mcp# Clone the repository
git clone https://github.com/keiro-labs/keiro-mcp-python.git
cd keiro-mcp-python
# Install with pip
pip install -e .
# Or with uv
uv pip install -e .Sign up at keiro.dev and get your API key from the dashboard.
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"keiro": {
"command": "keiro-mcp",
"env": {
"KEIRO_API_KEY": "your_api_key_here"
}
}
}
}Alternative using Python module:
{
"mcpServers": {
"keiro": {
"command": "python",
"args": ["-m", "keiro_mcp"],
"env": {
"KEIRO_API_KEY": "your_api_key_here"
}
}
}
}The KEIRO tools will now be available in Claude.
| Tool | Description |
|---|---|
keiro_search | Fast web search with AI-optimized results |
keiro_search_pro | Enhanced search with metadata and related queries |
keiro_research | Deep research with summary and key points |
keiro_research_pro | Comprehensive research with analysis and sources |
keiro_answer | Direct AI-powered answers with citations |
keiro_crawl | Extract content from any web page |
Once configured, you can ask Claude things like:
"Search for the latest developments in quantum computing"
"Research the impact of AI on healthcare in 2024"
"What are the key features of the new iPhone?"
"Extract the main content from https://example.com/article"
Claude will use the appropriate KEIRO tool to fetch real-time information.
| Variable | Required | Description |
|---|---|---|
KEIRO_API_KEY | Yes | Your KEIRO API key |
KEIRO_BASE_URL | No | Custom API URL (default: production) |
# Clone and install in development mode
git clone https://github.com/keiro-labs/keiro-mcp-python.git
cd keiro-mcp-python
pip install -e ".[dev]"
# Run type checking
mypy src
# Run linting
ruff check src
# Run tests
pytestThis MCP server uses the following KEIRO API endpoints:
POST /search - Basic searchPOST /search-pro - Advanced searchPOST /research - Topic researchPOST /research-pro - Deep researchPOST /answer - AI answersPOST /web-crawler - Page extractionFull API documentation: keiro.dev/docs
MIT © KEIRO
<p align="center"> <sub>Built with ❤️ by the KEIRO team</sub> </p>
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.