# PostGrid Verify — MCP server on mcp.ai > Connect your PostGrid Verify account and use 12 tools for developer tools straight from your AI agent. Connect with your own API key. PostGrid Verify is an API that allows you to autocomplete, verify, and standardize addresses in real-time, supporting both individual and batch address verification. By: mcp.ai · official Page: https://mcp.ai/postgrid_verify ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_postgrid_verify?ms=1787296020000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/postgrid_verify/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/postgrid_verify/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/postgrid_verify/skill.md Postman collection (v2.1): https://mcp.ai/postgrid_verify/postman.json ## Tools - postgrid_verify_autocomplete_address(index?: string, pcFilter?: string, cityFilter?: string, stateFilter?: string, countryFilter?: string, partialStreet: string) — Tool to autocomplete a partially specified US or Canada address. Retrieves complete verified address including full postal code. Uses 1 lookup per request. - postgrid_verify_autocomplete_intl_address(id: string) — Tool to retrieve complete verified international address data using an ID from the preview endpoint. Use when you have an address ID from the preview step and need the full address details. - postgrid_verify_get_autocomplete_previews(countryFilter?: string, partialStreet?: string, provInsteadOfPC?: boolean) — Tool to get previews of autocompleted US and Canadian addresses. Returns partial address data (line1, city, first 3 digits of postal code) without using any lookups. Use when you need quick autocomple - postgrid_verify_get_intl_autocomplete_previews(limit?: integer, language?: string, cityFilter?: string, streetFilter?: string, partialStreet?: string, countriesFilter?: string, disableIPBiasing?: boolean, postalOrZipFilter?: string) — Tool to get previews of autocompleted international addresses. Results are biased based on your current IP address unless disabled. Returns both 'Address' and 'BuildingNumber' types - if type is 'Addr - postgrid_verify_get_lookup_info() — Tool to retrieve lookup usage information for your PostGrid account. Use when you need to check how many lookups you have used and your free lookup limit. - postgrid_verify_lookup_city_state_from_postal(postalOrZip: string) — Tool to lookup city and state for a given postal or ZIP code. Use when you need valid city/state combinations for a postal code. - postgrid_verify_parse_address(address: string) — Tool to break an address apart into its components. Use when you need to extract individual address parts like street number, road, city, state, and postal code from a single-line address string. - postgrid_verify_suggest_addresses(address: object, includeDetails?: string) — Tool to find addresses similar to the given address. If the address can be verified or corrected, the first element will contain the verified address. Returns unit number ranges in line1 of suggested - postgrid_verify_verify_address(city?: string, line1?: string, line2?: string, address?: string, country?: string, geocode?: boolean, postalOrZip?: string, includeDetails?: boolean, provinceOrState?: string) — Tool to verify and standardize a US or Canadian address. Supports both freeform addresses (single-line) and structured addresses (with separate line1, city, etc.). Use includeDetails=true for addition - postgrid_verify_verify_batch_addresses(geocode?: boolean, addresses: string|object[], properCase?: boolean, includeDetails?: boolean) — Tool to verify up to 2000 US and Canada addresses in a single API call. Accepts both freeform address strings and structured address objects. Each address uses 1 lookup credit. - postgrid_verify_verify_international_address(address: string, geoData?: boolean, includeDetails?: boolean) — Tool to verify and standardize international addresses from 245+ countries. Supports both structured and freeform address inputs. Use includeDetails=true for match levels and geoData=true for coordina - postgrid_verify_verify_intl_addresses_batch(geoData?: boolean, addresses: string|object[], includeDetails?: boolean) — Tool to verify up to 2000 international addresses in a single API call. Accepts both freeform address strings and structured address objects. Uses 1 lookup per address. ## Example prompts - "What can I do in PostGrid Verify?" - "Show me a summary of my PostGrid Verify account" ## Links Docs: https://mcp.ai/docs/mcps/postgrid_verify Website: https://mcp.ai/mcps/postgrid_verify