CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp Server

sthan-io/mcp-server
authSTDIOregistry active
Summary

Connects Claude to sthan.io's US postal APIs. You get eight tools: verify addresses against USPS data with DPV and ZIP+4, parse freeform text into structured components, autocomplete addresses/cities/ZIPs with sub-100ms response times, forward and reverse geocoding with accuracy scores, and IPv4/IPv6 geolocation. The verify endpoint is the standout here, returning delivery point validation and residential/commercial flags from real postal records instead of guessing. Runs via stdio, needs a free API key from sthan.io (no credit card), and works with Claude Desktop, Cursor, VS Code, or any MCP client. Useful when you're building workflows that need to validate shipping addresses, enrich location data, or let Claude handle geospatial queries without hallucinating coordinates.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Sthan MCP Server

npm version License: MIT

MCP server for sthan.io — give your AI assistant the ability to verify, parse, autocomplete, and geocode US addresses, and look up IP geolocation. Works with Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, and any MCP-compatible client.

8 tools · TypeScript · stdio transport · Free tier, no credit card required.


Why use it

  • Real US postal data — addresses are verified against authoritative postal records, not heuristics. Returns delivery point validation (DPV), ZIP+4, residential/commercial flag.
  • Sub-100ms autocomplete — typeahead-grade response times for address, city, and ZIP suggestions.
  • Strong geocoding — forward geocoding returns accuracy classification (rooftop / interpolated / centroid / approximate) plus a confidence score, so your AI knows when to trust the result.
  • IPv4 + IPv6 geolocation — country, region, city, coordinates, timezone, postal code.
  • Free tier with no credit card — get a key in under a minute at sthan.io/dashboard.

Tools

ToolWhat it does
sthan_verify_addressVerify a US address is real and deliverable. Returns standardized format, ZIP+4, DPV, residential/commercial.
sthan_parse_addressParse freeform US address text into structured components (street number, name, type, direction, unit, city, state, zip).
sthan_autocomplete_addressSuggest complete US addresses from partial input. Sub-100ms.
sthan_autocomplete_citySuggest US cities from partial input, with state code.
sthan_autocomplete_zipcodeSuggest US ZIP codes from partial input.
sthan_geocodeUS address → latitude/longitude with accuracy + confidence.
sthan_reverse_geocodeLatitude/longitude → nearest US street address with distance in meters.
sthan_ip_geolocationIPv4 or IPv6 → country, region, city, coordinates, timezone, postal code.

Quick start

1. Get a free API key

Sign up at sthan.io and create a key from the dashboard. No credit card.

2. Add to your MCP client

Claude Desktop / Claude Code (~/.claude/mcp.json or project .claude/mcp.json):

{
  "mcpServers": {
    "sthan": {
      "command": "npx",
      "args": ["-y", "@sthan/mcp-server"],
      "env": { "STHAN_API_KEY": "sthan_test_your_key_here" }
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "sthan": {
      "command": "npx",
      "args": ["-y", "@sthan/mcp-server"],
      "env": { "STHAN_API_KEY": "sthan_test_your_key_here" }
    }
  }
}

VS Code (settings.json):

{
  "mcp.servers": {
    "sthan": {
      "command": "npx",
      "args": ["-y", "@sthan/mcp-server"],
      "env": { "STHAN_API_KEY": "sthan_test_your_key_here" }
    }
  }
}

Example prompts

Once configured, just ask your AI assistant naturally:

  • "Is 123 Main St, New York, NY 10001 a real, deliverable address?"
  • "Parse this address: apt 2b 500 broadway new york ny"
  • "What are the coordinates of 1600 Pennsylvania Ave, Washington DC?"
  • "What's the nearest address to 40.7128, -74.0060?"
  • "Where is IP 8.8.8.8 located?"
  • "Suggest US cities starting with 'San Fr'."

Environment variables

VariableRequiredDescription
STHAN_API_KEYYesYour sthan.io API key (sthan_test_* for development, sthan_live_* for production)
STHAN_API_URLNoOverride base URL (default: https://api.sthan.io)

Packages

This monorepo publishes two packages:

PackagenpmPurpose
@sthan/mcp-servernpmThe MCP server itself — the binary that your client launches
@sthan/corenpmTypeScript SDK for direct programmatic use of sthan.io APIs

Development

git clone https://github.com/sthan-io/mcp-server.git
cd mcp-server
npm install
npm run build --workspaces

Then run the server with STHAN_API_KEY=sthan_test_... node packages/mcp-server/dist/index.js.

Links

  • Homepage: https://sthan.io
  • API docs: https://sthan.io/docs
  • OpenAPI spec: https://api.sthan.io/openapi.json
  • AI reference (llms-full.txt): https://api.sthan.io/llms-full.txt
  • Pricing: https://sthan.io/pricing/united-states
  • Support: https://sthan.io/support
  • Glama: https://glama.ai/mcp/servers/sthan-io/mcp-server

License

MIT — see LICENSE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

STHAN_API_KEY*secret

Your sthan.io API key (get one free at https://sthan.io/dashboard)

Registryactive
Package@sthan/mcp-server
TransportSTDIO
AuthRequired
UpdatedApr 5, 2026
View on GitHub