APITier utility APIs as MCP tools: validation, UK/India address lookup, barcode/QR, data conversion.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-apitier-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
APITier utility APIs as MCP tools: validation, UK/India address lookup, barcode/QR, data conversion.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / maps
DataForSEO API modelcontextprotocol server
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
Search the Entra.news newsletter archive — a weekly digest of Microsoft Entra news
Live Japan travel data: sakura, koyo, fruit picking, flowers & festivals. 1,700+ spots from JMC.
MCP Security Weekly
Get CVE alerts and security updates for io.github.apitier/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server that exposes all APITier utility APIs as tools for AI agents.
| Tool | Description |
|---|---|
lookup_uk_postcode | UK postcode → full address list + geocode |
search_uk_address | Free-text UK address search |
autocomplete_uk_address | Real-time UK address suggestions |
validate_email | Validate email — syntax, MX, SMTP, disposable check |
validate_phone | Validate & parse phone numbers (international) |
validate_vat | Validate EU/UK VAT numbers, returns registered business |
lookup_india_pincode | Indian PIN code → state/district/town |
generate_barcode | Generate barcode image (Code128, EAN-13, UPC, etc.) |
generate_qrcode | Generate QR code image with optional logo + colour |
convert_data | Convert between CSV, JSON, XML, YAML |
Sign up at apitier.com. Each APITier service has its own subscription and API key. You only need keys for the services you want to use — tools without a configured key are automatically omitted from the MCP tool list.
npm install -g @apitier/mcp-server
# or run directly without installing:
npx @apitier/mcp-server
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"apitier": {
"command": "npx",
"args": ["@apitier/mcp-server"],
"env": {
"APITIER_POSTCODE_KEY": "key-from-postcode-subscription",
"APITIER_EMAIL_KEY": "key-from-email-subscription",
"APITIER_PHONE_KEY": "key-from-phone-subscription",
"APITIER_VAT_KEY": "key-from-vat-subscription",
"APITIER_BARCODE_KEY": "key-from-barcode-subscription",
"APITIER_CONVERT_DATA_KEY": "key-from-data-conversion-subscription"
}
}
}
}
Only set keys for services you have subscribed to. Restart Claude Desktop — you will see only the tools for your active subscriptions.
{
"mcp": {
"servers": {
"apitier": {
"command": "npx",
"args": ["@apitier/mcp-server"],
"env": {
"APITIER_API_KEY": "your-api-key-here"
}
}
}
}
}
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
from langchain_mcp_adapters.tools import load_mcp_tools
from langgraph.prebuilt import create_react_agent
from langchain_anthropic import ChatAnthropic
async def main():
server_params = StdioServerParameters(
command="npx",
args=["@apitier/mcp-server"],
env={"APITIER_API_KEY": "your-api-key"},
)
async with stdio_client(server_params) as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await load_mcp_tools(session)
model = ChatAnthropic(model="claude-sonnet-4-6")
agent = create_react_agent(model, tools)
result = await agent.ainvoke({
"messages": "Validate this email: test@example.com and look up postcode SW1A 1AA"
})
print(result["messages"][-1].content)
import { experimental_createMCPClient as createMCPClient } from "ai";
import { Experimental_StdioMCPTransport as StdioMCPTransport } from "ai/mcp-stdio";
import { anthropic } from "@ai-sdk/anthropic";
import { generateText } from "ai";
const mcp = await createMCPClient({
transport: new StdioMCPTransport({
command: "npx",
args: ["@apitier/mcp-server"],
env: { APITIER_API_KEY: process.env.APITIER_API_KEY! },
}),
});
const tools = await mcp.tools();
const { text } = await generateText({
model: anthropic("claude-sonnet-4-
... [View full README on GitHub](https://github.com/apitier/apitier-mcp-server#readme)