apicrate-mcp
OfficialAllows Codeium (Windsurf) to access 22 data tools across 9 domains including IP geolocation, email risk scoring, country lookup, postal code validation, timezone conversion, cryptographic hashing, Bible search, and QR code generation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@apicrate-mcpgeolocate IP 8.8.8.8"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ApiCrate MCP Server
Connect any MCP-compatible AI agent to 22 data tools across 9 domains — IP geolocation, email risk scoring, postal codes, countries, timezones, user-agent parsing, cryptographic hashing, Bible search, and QR code generation.
This package provides a local STDIO transport for the ApiCrate MCP server. It proxies tool calls from your MCP client to the hosted API, so your API key stays in an environment variable instead of a config file.
You can also connect directly to the hosted server via Streamable HTTP at
https://api.apicrate.io/mcp/— no install needed. See HTTP Setup below.
Quick Start
1. Get your API key
Sign up free at apicrate.io — no credit card required.
2. Install
pip install apicrate-mcpOr run without installing:
uvx apicrate-mcp3. Configure your client
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"apicrate": {
"command": "apicrate-mcp",
"env": {
"APICRATE_API_KEY": "ac_usr_your_key_here"
}
}
}
}claude mcp add apicrate -- apicrate-mcpThen set your key:
export APICRATE_API_KEY=ac_usr_your_key_hereOr add a .mcp.json to your project root:
{
"mcpServers": {
"apicrate": {
"command": "apicrate-mcp",
"env": {
"APICRATE_API_KEY": "ac_usr_your_key_here"
}
}
}
}Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"apicrate": {
"command": "apicrate-mcp",
"env": {
"APICRATE_API_KEY": "ac_usr_your_key_here"
}
}
}
}Add to ~/.codeium/windsurf/mcp_settings.json:
{
"mcpServers": {
"apicrate": {
"command": "apicrate-mcp",
"env": {
"APICRATE_API_KEY": "ac_usr_your_key_here"
}
}
}
}Streamable HTTP (no install)
If your client supports Streamable HTTP, skip the install and connect directly:
{
"mcpServers": {
"apicrate": {
"type": "streamableHttp",
"url": "https://api.apicrate.io/mcp/",
"headers": {
"X-API-Key": "ac_usr_your_key_here"
}
}
}
}4. Verify
Ask your agent:
"What country has code DE?"
It should call apicrate-lookup-country and return information about Germany.
Related MCP server: osint-mcp-server
Tools
User Agents
Tool | Description | Credits |
| Parse browser, OS, device & bot from a UA string | 2 |
| Batch parse up to 100 UA strings | 1/UA |
IP Geolocation
Tool | Description | Credits |
| Country, city, ISP, ASN & VPN/Tor detection | 5 |
Countries
Tool | Description | Credits |
| Full ISO 3166-1 record — capital, currencies, languages | 1 |
| Filter by region, sub-region, or query | 3 |
| Validate up to 50 country codes in one call | 1/code |
Postal Codes
Tool | Description | Credits |
| Resolve to city, admin regions & coordinates | 2 |
| Check format validity and database existence | 1 |
| Search by prefix or place name | 3 |
| List all countries with postal code data | 2 |
| Format, regex & examples for a country | 2 |
| Batch validate up to 50 postal codes | 2/code |
| Find codes within a radius of a GPS point | 5 |
Timezones
Tool | Description | Credits |
| Current time, UTC offset & DST status | 1 |
| Convert time between two timezones | 1 |
Hashing
Tool | Description | Credits |
| MD5, SHA-1, SHA-256, or SHA-512 | 1 |
| bcrypt, scrypt, or argon2id | 2 |
Bible
Tool | Description | Credits |
| Fetch a verse or range across 30+ translations | 1 |
| Full-text search across translations | 3 |
Email Risk
Tool | Description | Credits |
| Syntax, MX, disposable, domain age, abuse list | 4 |
| Bulk assess up to 10 emails | 4/email |
QR Code
Tool | Description | Credits |
| Generate QR from text, URL, WiFi, vCard, email, SMS, or geo | 2 |
Example Prompts
Once connected, try these:
"Where is IP 203.0.113.5 located?"
"What city is postal code EC1A 1BB in?"
"Parse this User-Agent string for me"
"Convert 9am London time to Tokyo"
"Hash this password with argon2id"
"Look up John 3:16 in the NIV"
"Is this email address risky: test@tempmail.com?"
"Find postal codes within 10km of Berlin's center"
Configuration
Environment Variable | Default | Description |
| (required) | Your API key from apicrate.io |
|
| API base URL (for testing/self-hosted) |
|
| HTTP request timeout in seconds |
Credits & Pricing
MCP tool calls consume credits from a daily pool, separate from REST API quota.
Plan | Credits/day | Price |
Starter | 100 | Free |
Pro | 50,000 | $19/mo |
Enterprise | Unlimited | Custom |
Every response includes quota headers (X-Quota-Limit, X-Quota-Remaining, X-Quota-Reset) so you always know your usage.
Development
# Clone the repo
git clone https://github.com/apicrateio/apicrate-mcp.git
cd apicrate-mcp
# Create a virtual environment
python -m venv .venv
source .venv/bin/activate
# Install in development mode
pip install -e ".[dev]"
# Run tests
pytest
# Run the server locally
APICRATE_API_KEY=ac_usr_your_key apicrate-mcpContributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
License
Links
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apicrateio/apicrate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server