mexico-zip-codes
3.5
The Mexico ZIP Codes MCP Server provides comprehensive information on Mexican postal codes, updated daily with official data.
The Mexico ZIP Codes MCP Server is a powerful tool designed to provide comprehensive information regarding Mexican postal codes. This server stores all the ZIP codes for Mexico and is updated daily with official data. It allows users to retrieve detailed information about a specific postal code, search for postal codes starting with certain digits, and find postal codes by geographical location, including state, municipality, and neighborhood.
Features
- {'name': 'Retrieve ZIP Code Information', 'description': 'This feature allows you to retrieve detailed information about a particular ZIP code in Mexico. Upon providing a specific postal code, you will receive an array containing the associated neighborhood, municipality, and state.'}
- {'name': 'Search ZIP Codes', 'description': 'This tool enables you to search for valid ZIP codes using the starting digits. You can specify part of a ZIP code to receive a list of potential matches. An optional parameter allows you to limit the number of results returned.'}
- {'name': 'Search ZIP Codes by Location', 'description': 'With this function, you can find all ZIP codes associated with a particular location defined by state and municipality. An optional parameter allows you to narrow down the search by specifying a neighborhood. Another optional parameter lets you limit the number of results.'}
MCP Tools
- Search ZIP Codes: Search for valid ZIP codes with starting digits.
- Search ZIP Code by Colonia, Municipio, and Estado: Get all ZIP codes for a specific location within Mexico.
- Zip Code Information: Retrieve detailed information for a specific ZIP code.
Usage with Different Platforms
mcp
{
"action": "retrieve_zip_code_info",
"zip_code": "01000"
}
python
python
import requests
response = requests.post('http://mexico-zip-codes-mcp-server/api', json={
'action': 'retrieve_zip_code_info',
'zip_code': '01000'
})
print(response.json())