client — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited client (MCP Server) 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.
MCP (Model Context Protocol) server for accessing INSEE data via the SIRENE API, BDM, and official nomenclatures.
# Install and launch directly
API_KEY="your_insee_api_key" uv run --with insee-mcp insee-mcpor if you prefer to use uvx
# Install and launch directly
API_KEY="your_insee_api_key" uvx insee-mcp insee-mcpAdd this to your MCP configuration (e.g., Claude Desktop, or Copilot):
{
"mcpServers": {
"insee": {
"command": "uvx",
"args": ["insee-mcp", "insee-mcp"],
"env": {
"API_KEY": "your_insee_api_key"
}
}
}
}API_KEY="your_insee_api_key" pipx run --spec git+https://github.com/KerryanOPMace/mcp-insee.git insee-mcp# Install directly from GitHub
pip install git+https://github.com/KerryanOPMace/mcp-insee.git
# Set your INSEE API key
export API_KEY="your_insee_api_key"
# Start the server
insee-mcp# Install with pipx (isolated environment)
pipx install git+https://github.com/KerryanOPMace/mcp-insee.git
# Set the API key
export API_KEY="your_insee_api_key"
# Start the server
insee-mcp# Clone the repository
git clone https://github.com/KerryanOPMace/mcp-insee.git
cd mcp-insee
# Install in development mode
pip install -e .If you wish to contribute to the project, please create issues and branches. You can merge request and then a supervisor will review it before merging
You must obtain an API key from the INSEE API portal and configure it:
Linux/Mac:
export API_KEY="your_insee_api_key"Windows (PowerShell):
$env:API_KEY="your_insee_api_key"Windows (CMD):
set API_KEY=your_insee_api_keysearch_company: Search for companies in the SIRENE databaseOnce started, the MCP server is accessible at:
http://127.0.0.1:8000/mcpfrom fastmcp import Client
import asyncio
async def test():
client = Client("http://127.0.0.1:8000/mcp")
async with client:
# List tools
tools = await client.list_tools()
print(tools)
# Search for a company
result = await client.call_tool("search_company", {
"siret": "44302124100072"
})
print(result)
asyncio.run(test())Once started, the MCP server runs locally according to the standard io protocol
from fastmcp import Client
import asyncio
async def test():
client = Client("http://127.0.0.1:8000/mcp")
async with client:
# List tools
tools = await client.list_tools()
print(tools)
# Search for a company
result = await client.call_tool("search_company", {
"siret": "44302124100072"
})
print(result)
asyncio.run(test())MIT License
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.