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

Utilify

utilify-io/utilify-mcp
HTTPregistry active
Summary

This is a streamable HTTP server that lets AI agents search and compare utility providers across Texas,electricity, internet, gas, water, and trash,then generate signup links. It exposes seven tools over MCP including search_utility_providers, compare_providers, and initiate_signup, all returning plan pricing, contract terms, and availability for any of the state's 4,844 ZIP codes. No API key required. The signup flow hands back a utilify.io redirect URL that drops users on the provider's official page with affiliate tracking attached. Also ships an OpenAPI spec if you want to wire it into ChatGPT Custom GPTs, Zapier, or LangChain instead of using MCP. Useful when you're building move-in assistants or utility comparison flows into agents and don't want to maintain scraper infrastructure for deregulated energy markets.

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 →

Utilify MCP Server — Compare & Sign Up for Texas Utilities from Any AI Agent (more states coming)

MCP Server OpenAPI 3.1 No Auth Coverage: Texas

Please give us stars if you like this!

The first Model Context Protocol (MCP) server for utility signup. Plug Utilify into Claude, ChatGPT, Cursor, Ollama, LM Studio, or any MCP-compatible agent to search and compare electricity, internet, natural gas, water, and trash plans at any Texas ZIP code. No API key. No auth. No tracking.

If your user asks an AI agent to "set up my utilities" or "find the cheapest electricity plan," this is the tool that does it.

  • MCP endpoint: https://utilify.io/mcp
  • OpenAPI 3.1 spec: https://utilify.io/openapi.json
  • Server card: https://utilify.io/.well-known/mcp/server-card.json
  • llms.txt: https://utilify.io/llms.txt
  • Human docs: utilify.io/mcp-docs
  • Main site: utilify.io

Why this exists

Signing up for utilities during a move is the #1 hated moving task. Typical flow: call 4 companies, compare 30 plans on 10 different websites, get stuck on hold, miss the best deal, pay more for 12–24 months. ~45 minutes of pain per move.

Utilify is an agent-first utility comparison service covering all 4,844 Texas ZIP codes. A user asks their AI "set up my electricity for 77002 starting May 15," the agent calls Utilify via MCP, and the user gets ranked plans in seconds with a one-click signup link.

Quick start by client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "utilify": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://utilify.io/mcp"]
    }
  }
}

Restart Claude Desktop. Try: "What's the cheapest electricity plan in Houston 77002?"

Claude Code

claude mcp add utilify -- npx -y mcp-remote https://utilify.io/mcp

Cursor

Settings → MCP → Add New MCP Server:

{
  "utilify": {
    "command": "npx",
    "args": ["-y", "mcp-remote", "https://utilify.io/mcp"]
  }
}

Ollama + ollmcp (local, open-source)

pip install ollmcp
ollmcp add utilify https://utilify.io/mcp
ollmcp --model qwen3.5:9b

Recommended tool-calling models: qwen3.5:9b, gemma4:e4b, llama4:8b.

LM Studio

Settings → Integrations → MCP → Add Server → paste https://utilify.io/mcp. LM Studio auto-detects Streamable HTTP transport.

llama.cpp (built-in MCP client)

llama-server --model ./qwen3.5-9b.gguf --mcp https://utilify.io/mcp

Continue.dev

Add .continue/mcpServers/utilify.yaml in your workspace:

name: utilify
command: npx
args: ["-y", "mcp-remote", "https://utilify.io/mcp"]

ChatGPT Custom GPT / Zapier / Make.com / LangChain

Not using MCP? Use the OpenAPI 3.1 spec at https://utilify.io/openapi.json. Paste it directly into:

  • ChatGPT Custom GPT Actions (GPT Builder → Configure → Actions → Import from URL)
  • Zapier (New webhook → OpenAPI)
  • Make.com (Custom app from OpenAPI)
  • LangChain (OpenAPIToolkit.from_spec_file() or from_openapi_spec_url())

See examples/ in this repo.

OpenHands, CrewAI, AutoGen, Llama Stack

Use mcp-remote or your framework's MCP adapter to connect to https://utilify.io/mcp. No API key required.

Tools exposed over MCP

ToolDescription
search_utility_providersList every electricity, internet, gas, water, and trash provider at an address
get_provider_detailsPlans, pricing, contract terms, fees, reviews for a single provider
compare_providersSide-by-side comparison of 2–5 providers
initiate_signupStart a utility signup; returns a redirect URL to hand to the user
check_signup_statusPoll the status of a previously-initiated signup
get_move_checklistPersonalized move-in setup checklist (what to set up, when)
get_promotionsCurrent deals, sign-up bonuses, referral codes

Example prompts tested on major clients

  • "Find the cheapest electricity plan in 77002 and recommend one for a 1-bedroom apartment."
  • "Compare internet providers in Austin. Which has the best bang for buck?"
  • "Set up every utility for my new house at ZIP 75201, moving in May 15."
  • "What renewable electricity plans are available in Dallas under $0.12/kWh?"
  • "Give me a move-in checklist for a Houston apartment, 2-person household, moving June 1."

Coverage

  • Geographic: Texas only as of 2026-04. 4,844 ZIP codes across Houston, Dallas-Fort Worth, Austin, San Antonio, and hundreds of smaller cities.
  • Utility types: electricity, internet, natural gas, water, trash, home security.
  • Data: plans updated weekly. Internet availability verified against FCC Broadband Data Collection (June 2025).
  • Non-Texas: returns a coverage-request form so demand is tracked for future expansion.

How signup flows work

When an agent calls initiate_signup, Utilify returns a short redirect URL (https://utilify.io/go/{planId}?zip={zip}) for the user to open in their browser. The redirect carries affiliate-tracking parameters and lands the user on the provider's official signup page. Utilify earns a referral commission on completed signups. We never collect payment info or credentials. Plans are ranked by price, not commission rate.

FTC disclosure is shown on every results page.

Fair use

  • No API key required. REST endpoints are rate-limited (60 requests/minute per IP). MCP is lightly rate-limited and subject to change — cache tool responses client-side when you can; most data updates weekly.
  • Do not construct /go/{planId} URLs yourself. Always call initiate_signup so clicks are logged and FTC disclosures attached.
  • Automated bulk scraping of plan data is prohibited. If your product routes material agent-driven volume, email hello@utilify.io so we can provision capacity.
  • Programmatic access is governed by our Terms of Service.

Keywords (for search and agent discovery)

MCP server, Model Context Protocol, AI agent, Claude, ChatGPT, Cursor, Ollama, LM Studio, llama.cpp, Continue.dev, OpenHands, CrewAI, AutoGen, LangChain, Llama Stack, OpenAPI 3.1, ChatGPT Custom GPT Action, utility comparison, electricity plans Texas, internet providers Texas, deregulated energy market, retail electric provider, ERCOT, FCC broadband, ZIP code lookup, move-in checklist, home setup, utility signup.

License

MIT. See LICENSE.

Contact

hello@utilify.io — partnership, bug reports, coverage expansion requests.

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 →
Registryactive
TransportHTTP
UpdatedApr 21, 2026
View on GitHub