跳到正文
MCP ThesaurusMCP Thesaurus

parseAPI

社区Incomplete39/100认领

npm parseapi-mcpstreamable-httpupdated 7d ago

Official parseAPI MCP server. Every parseAPI lookup as a tool for AI agents: IP and place data, email, phone and domain validation, weather, currency, timezones, holidays.

源码官网

parseAPI 能做什么?

parseapi-mcp

Official parseAPI MCP server. Every parseAPI lookup as a tool for AI agents: IP and place data, email, phone and domain validation, weather, currency, timezones, holidays.

Hosted

One URL, nothing to install. Add the server and sign in once in the browser. Free plan works.

{
  "mcpServers": {
    "parseAPI": { "url": "https://mcp.parseapi.com" }
  }
}

Cursor: Add to Cursor

Repo-root .mcp.json is keyless on purpose. cursor.directory auto-detects it when you submit or refresh the listing.

CI and headless setups skip the browser with a key from parseapi.com:

{
  "mcpServers": {
    "parseAPI": {
      "url": "https://mcp.parseapi.com",
      "headers": { "X-API-Key": "your-api-key" }
    }
  }
}

Local

{
  "mcpServers": {
    "parseAPI": {
      "command": "npx",
      "args": ["-y", "parseapi-mcp"],
      "env": { "PARSEAPI_KEY": "your-api-key" }
    }
  }
}

Tools

One tool per endpoint, named after the route: ip, postal, city, city_search, city_nearby, email, vat, iban, npi, vin, hts, hts_search, phone, carrier, caller, hlr, weather, currency_rate, timezone, holiday, point, elevation, and the rest. Every tool returns the same minimal JSON the API serves.

Errors come back as JSON with a machine-readable code. Branch on code, never on message text. A miss is not_found. No key is invalid_api_key.

Development

npm install
npm run build
npm run smoke     # stdio + http, live calls when PARSEAPI_KEY is set
npm run serve     # http on :8080

MIT licensed.