{
  "info": {
    "name": "Interzoid — mcp.ai",
    "description": "REST API for the Interzoid MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/interzoid",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "interzoid_address_parse",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/address/parse",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "address",
            "parse"
          ]
        },
        "description": "Tool to parse a free-form address into structured components. Use when you need to extract street, city, state, etc. from unstructured address strings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_email_trust_score",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/email/trust/score",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "email",
            "trust",
            "score"
          ]
        },
        "description": "Tool to return a trust score for an email address. Use when you need to assess the quality and legitimacy of an email address. Call after acquiring the target email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_address_match_advanced",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/address/match/advanced",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "address",
            "match",
            "advanced"
          ]
        },
        "description": "Tool to generate a similarity key for a US street address. Use when performing fuzzy deduplication of addresses across datasets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"license\": \"\",\n  \"algorithm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_area_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/area/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "area",
            "code"
          ]
        },
        "description": "Tool to retrieve telephone area code information including primary city and geographic locale. Use when you need to get details about a specific area code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"areacode\": \"\",\n  \"x_api_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_area_code_from_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/area/code/from/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "area",
            "code",
            "from",
            "number"
          ]
        },
        "description": "Tool to get area code information from a telephone number. Use when you need to identify the geographic location or area code details for a given phone number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"number\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_business_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/business/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "business",
            "info"
          ]
        },
        "description": "Tool to retrieve comprehensive company profiles and business intelligence. Use when you need detailed company information by name, domain, or email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_company_match_advanced",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/match/advanced",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "match",
            "advanced"
          ]
        },
        "description": "Tool to generate a fuzzy-matching key for an organization name. Use when normalizing and deduplicating company names after extraction.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"company\": \"\",\n  \"license\": \"\",\n  \"algorithm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_country_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/country/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "country",
            "info"
          ]
        },
        "description": "Tool to standardize a country name and return metadata like ISO codes, currency, TLD, and calling code. Use when you need detailed country information based on a country name or code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"country\": \"\",\n  \"license\": \"\",\n  \"algorithm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_currency_rate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/currency/rate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "currency",
            "rate"
          ]
        },
        "description": "Tool to retrieve live USD exchange rate for a currency symbol. Use when you need current market rate for a three-letter ISO 4217 currency.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"symbol\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_custom_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "data"
          ]
        },
        "description": "Tool to retrieve custom enriched data based on a topic and lookup value. Use after specifying the desired output fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"topic\": \"\",\n  \"lookup\": \"\",\n  \"output\": \"\",\n  \"license\": \"\",\n  \"x_api_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_email_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email",
            "info"
          ]
        },
        "description": "Tool to validate an email and return enrichment/demographics. Use when you need in-depth email analysis after confirming the email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_entity_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/entity/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "entity",
            "type"
          ]
        },
        "description": "Tool to classify a text string into an entity type. Use when you need to identify if input refers to a Location, Organization, or Individual.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_executive_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/executive/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "executive",
            "profile"
          ]
        },
        "description": "Tool to retrieve executive profile details based on company and title keywords. Use when you need executive information such as LinkedIn and biography links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_full_name_match",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/full/name/match",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "full",
            "name",
            "match"
          ]
        },
        "description": "Tool to generate a similarity key for a full name. Use when performing fuzzy matching or deduplication of individual names.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"fullname\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_full_name_match_score",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/full/name/match/score",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "full",
            "name",
            "match",
            "score"
          ]
        },
        "description": "Tool to return a similarity score between two full names. Use when determining if two person names likely refer to the same individual.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"fullname1\": \"\",\n  \"fullname2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_global_address_match",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/global/address/match",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "global",
            "address",
            "match"
          ]
        },
        "description": "Tool to generate a similarity key for a global address. Use when performing fuzzy matching and deduplication of international addresses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"license\": \"\",\n  \"algorithm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_global_page_load_performance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/global/page/load/performance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "global",
            "page",
            "load",
            "performance"
          ]
        },
        "description": "Tool to measure page/API load time from a specified global origin. Use when benchmarking response times across geographic locations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"origin\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_global_weather",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/global/weather",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "global",
            "weather"
          ]
        },
        "description": "Tool to return current weather conditions for a global location. Use when you need up-to-the-minute weather details for any city worldwide.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"location\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_ip_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ip/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ip",
            "profile"
          ]
        },
        "description": "Tool to retrieve IP intelligence including ASN, organization, geolocation, and reputation. Use when profiling an IP address for threat analysis.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\",\n  \"x-api-key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_license",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/license",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "license"
          ]
        },
        "description": "Tool to retrieve the configured Interzoid API license key. Use when you need to inspect which API key is active in the current connection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"x_api_key\": \"\",\n  \"authorization\": \"\",\n  \"query_license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_name_origin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/name/origin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "name",
            "origin"
          ]
        },
        "description": "Tool to infer the likely country or region of origin from a personal name. Use after obtaining a name to guess its origin.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_org_match_score",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/match/score",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "match",
            "score"
          ]
        },
        "description": "Tool to return a 1–99 match score between two organization names. Use after gathering both names to evaluate organization similarity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"company1\": \"\",\n  \"company2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_org_standard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/standard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "standard"
          ]
        },
        "description": "Tool to standardize an organization name to a canonical English form. Use when you need consistent company naming for data normalization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"license\": \"\",\n  \"x-api-key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_parent_company_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/parent/company/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "parent",
            "company",
            "info"
          ]
        },
        "description": "Tool to retrieve ultimate parent company information. Use when you have a company name or domain and need its ownership details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_phone_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/phone/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "phone",
            "profile"
          ]
        },
        "description": "Tool to retrieve phone number intelligence including validation, normalization, carrier, and risk assessment. Use when you need to enrich and validate a phone number after capture.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": \"\",\n  \"license\": \"\",\n  \"x-api-key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_product_match",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/product/match",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "product",
            "match"
          ]
        },
        "description": "Tool to generate a similarity key for a product name. Use when normalizing and fuzzy-matching names across catalogs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"product\": \"\",\n  \"algorithm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_remaining_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/remaining/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "remaining",
            "credits"
          ]
        },
        "description": "Tool to retrieve remaining Interzoid API credits. Use when you need to check your credit balance after usage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\",\n  \"x_api_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_get_weather_zipcode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/weather/zipcode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "weather",
            "zipcode"
          ]
        },
        "description": "Tool to get current weather conditions for a US ZIP code. Use when you need real-time weather information for a specific area after confirming the ZIP code is valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_identify_language",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/identify/language",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "identify",
            "language"
          ]
        },
        "description": "Tool to detect the language of a text string. Use when you need to identify the language of arbitrary text. Call after obtaining the text input.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "interzoid_translate_to_any",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/translate/to/any",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "translate",
            "to",
            "any"
          ]
        },
        "description": "Tool to auto-detect the input language and translate given text to the specified target language. Use when you need quick translations without specifying the source language.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"text\": \"\",\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}