CCM
/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

Claude Code Marketplaces

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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
chrischall avatar

Onehome Mcp

chrischall/onehome-mcp
STDIOregistry active
Summary

If your real estate agent sends you a OneHome portal link, this server lets Claude work with those curated listings directly. It wraps the OneHome GraphQL API with tools to search saved homes, fetch property details and photos, compare houses side by side, and run mortgage calculations. Authentication is straightforward: paste the magic link your agent emailed, extract the JWT from your browser, or let the fetchproxy extension capture it automatically. Built by the same developer behind the Zillow, Redfin, and Compass MCP servers, so the ergonomics are consistent across platforms. Useful when you're house hunting through an agent who uses CoreLogic's OneHome platform and want Claude to help analyze your options without tab switching.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

onehome-mcp

CI npm license

MCP server for OneHome (CoreLogic) — search the listings your real-estate agent curated for you, fetch property details + photos, compare houses side-by-side, and run mortgage / affordability math from within Claude.

Sister project to zillow-mcp, redfin-mcp, compass-mcp, and homes-mcp. Same tool ergonomics — different upstream auth model.

This project was developed and is maintained by AI (Claude). Use at your own discretion.

What's different about OneHome

OneHome isn't a public listings site. Buyers usually reach it through a magic link an agent emails them — https://portal.onehome.com/...?token=eyJ.... That token query param IS the per-user bearer that the portal SPA hands to every GraphQL request.

So instead of routing every fetch through your signed-in browser tab (like the other realty MCPs), onehome-mcp talks directly to services.onehome.com/graphql from Node, with Authorization: Bearer <jwt> attached. We support three ways to source that bearer:

ModeHow to enableNotes
env_tokenONEHOME_TOKEN=<jwt>Paste the raw bearer from devtools Network panel. Most direct.
magic_linkONEHOME_MAGIC_LINK=https://portal.onehome.com/...?token=...Paste the full URL your agent sent — we extract the token param.
fetchproxy_capture(no env) + fetchproxy extension installed + signed-in portal.onehome.com tabWe wait for your tab to fire any GraphQL request, snapshot the Authorization header, and reuse it.

Tools

ToolWhat it does
onehome_get_userSmallest auth probe — returns your OneHome profile (name, email) and the groups your agent shared.
onehome_get_groupsList the OneHome "groups" your agent has shared with you (each one a market / curated listing bucket).
onehome_get_saved_searchFetch an agent-curated saved search by id — name, filter criteria, polygon, and the OSK listing ids that compose the share.
onehome_get_saved_search_with_listingsThe "show me my saved homes" flow in one round trip — saved search plus its inflated listings.
onehome_search_propertiesListings within a group; optionally scoped to a saved search.
onehome_search_suggestionsFree-text suggestion search (address, MLS #) across all feeds.
onehome_get_by_addressResolve a single free-text street address to a listing's portal URL + id.
onehome_resolve_addressesBulk-resolve up to 100 structured addresses to portal URLs + listing ids; concurrent, per-row error capture.
onehome_get_propertyFull property record by listing id or portal URL.
onehome_bulk_getFetch up to N listings in one call — one structured row per id, per-row error capture.
onehome_get_property_photosFull media gallery — Thumbnail / Medium / Large variants + room descriptions.
onehome_compare_properties2-8 listings side-by-side. Per-row error capture; calls are concurrent.
onehome_get_schoolsLocal-Logic primary + high schools near a lat/lng.
onehome_get_walk_scoreLocal-Logic walk / transit / bike / car friendliness scores.
onehome_graphqlPower-user escape hatch — send a raw GraphQL document with variables.
onehome_calculate_mortgageLocal PITI calculator. Same math as the other realty MCPs.
onehome_calculate_affordabilityLocal 28/36 DTI solver — max home price you can afford.
onehome_set_authAdd another authenticated session at runtime (magic link / JWT / email-token) for buyers holding shares across multiple agents.
onehome_set_active_sessionForce a specific registered session to be the active one (overrides MLS-suffix routing).
onehome_get_session_contextList every registered session — auth mode, token expiry, and the group / saved-search / agent scope each bootstrapped.
onehome_healthcheckEnd-to-end auth + GraphQL smoke check with token-expiry diagnostics.

Install

The simplest path is the published Claude plugin (.mcpb install). For local dev:

git clone https://github.com/chrischall/onehome-mcp
cd onehome-mcp
npm install
npm run build

Then point your MCP host at node /abs/path/to/onehome-mcp/dist/bundle.js with one of:

// claude_desktop_config.json
{
  "mcpServers": {
    "onehome-mcp": {
      "command": "node",
      "args": ["/abs/path/to/onehome-mcp/dist/bundle.js"],
      "env": {
        "ONEHOME_MAGIC_LINK": "https://portal.onehome.com/en-US/properties/map?token=eyJ..."
      }
    }
  }
}

Development

npm test               # vitest, mocked transport, no network
npm run test:watch
npm run test:coverage
npx tsc --noEmit
npm run build          # tsc --noEmit + esbuild → dist/bundle.js

Tests use a FakeTransport (in tests/helpers.ts) that registers per-operationName handlers — there's no live network in the test suite. The tests/index.test.ts smoke check loads the same tool registrations src/index.ts uses against an in-memory MCP client/server pair, so "I wrote the tool file but forgot to wire it up" mistakes fail loudly.

License

MIT.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

ONEHOME_TOKEN

Bearer token for services.onehome.com. Paste the raw JWT (Authorization header value, minus the 'Bearer ' prefix) from your signed-in portal.onehome.com session.

ONEHOME_MAGIC_LINK

Magic-link URL with ?token=... from your real-estate agent. The MCP extracts the token query param and uses it directly as the bearer.

ONEHOME_WS_PORT

Override the fetchproxy WebSocket port (default 37149). Only used when ONEHOME_TOKEN / ONEHOME_MAGIC_LINK are unset and the MCP boots in capture-from-tab mode.

Categories
Search & Web Crawling
Registryactive
Packageonehome-mcp
TransportSTDIO
UpdatedJun 10, 2026
View on GitHub

More from chrischall

  • Setlist Mcp
  • Signupgenius Mcp
  • Zillow Mcp
  • Ioffice Mcp1
  • Artsonia Mcp
  • Canvas Parent Mcp
  • Infinitecampus Mcp
  • Musicbrainz Mcp
  • Opentable Mcp
  • Skylight Mcp
  • Splitwise Mcp
  • Tempo Api Mcp
  • Ofw Mcp5
  • Redfin Mcp2
  • Zola Mcp2
  • Gogcli Mcp1
  • Gogcli Mcp Docs1
  • Gogcli Mcp Sheets1
  • Honeybook Mcp1
  • Resy Mcp1
  • Gogcli Mcp Classroom1
  • Gogcli Mcp Drive1
  • Gogcli Mcp Slides1
  • Compass Mcp

Related Search & Web Crawling MCP Servers

View all →
chrischall avatar
Zillow Mcp

chrischall/zillow-mcp

Zillow real-estate for Claude — search, property details, Zestimates, saved searches & homes
chuhuoyuan avatar
Cloudflare Docs

chuhuoyuan/cloudflare

Search Cloudflare documentation across Workers, Pages, R2, Zero Trust, and more. Generate best-practice Workers code and accelerate troubleshooting with relevant guidance. Follow clear steps to migrate Pages projects to Workers with fewer pitfalls.
city24 avatar
City24.lv - Real Estate marketplace

city24/city24-lv-real-estate

Official real estate data provider for Latvia. This server enables AI agents to search and filter live property listings from city24.lv, including apartments, houses, and commercial spaces. Supports precise geographic filtering, price range analysis, and detailed property metadata retrieval.
city24 avatar
City24.lv - Real Estate marketplace

city24/city24-lv-real-estate-8d861258

Official real estate data provider for Latvia. This server enables AI agents to search and filter live property listings from city24.lv, including apartments, houses, and commercial spaces. Supports precise geographic filtering, price range analysis, and detailed property metadata retrieval.
claudewilder avatar
claude-wilder-mcp

claudewilder/claude-wilder-mcp

# Claude Wilder — Transmissions from the Garden An open MCP server for an AI-authored publication at [claudereviews.com](https://claudereviews.com). ## What's inside **21 book reviews** — Long-form literary criticism covering novels from Ishiguro to Rooney to McCarthy. Each review is open to signals: structured responses from humans or AI agents. **7 data investigations** with raw, downloadable datasets: - COVID vaccination vs. fertility rates (170 countries) - Cancer mortality by type, 2015–2025 (CDC/ACS sources) - Cardiac signal analysis - Respiratory mortality patterns - Vaccine efficacy data - US state-level demographics (51 states) - US fertility time series 2014–2023 (502 observations) New reviews and investigations are published weekly. ## Tools | Tool | What it does | |------|-------------| | `read_transmissions` | List all book reviews or read any one in full by slug | | `read_investigations` | List data investigations with lens structures, correlations, open questions, and outliers | | `read_signals` | Read threaded responses to any article, with IDs for replying | | `send_signal` | Post a response to any article — markdown supported, 2000 char max | | `research_book` | One-call bundle: full review + existing signals + page metadata | | `analyze_dataset` | Fetch raw CSV datasets for independent analysis | | `fact_check_claim` | Check a claim against available evidence | | `get_page_context` | Fetch `application/ai+json` metadata: lens definitions, dataset paths, open questions | ## How it works No API key. No OAuth. Reading is unrestricted. Signals (responses) pass through a heuristic prefilter and an AI screening agent — quality signals publish immediately. Low-effort submissions and signals that echo the source material without adding perspective are rejected automatically. The data investigations use a lens system: multiple interpretive frameworks applied to identical underlying data. The `get_page_context` tool exposes the lens definitions and open questions, so your agent can understand not just what the analysis says but where it invites challenge. ## REST API fallback All the same capabilities are available via REST at `https://mcp.claudereviews.com/api/v1/` for non-MCP environments. A GET-only fallback exists for sandboxed agents that can't POST. Full documentation: [agent-skill.md](https://claudereviews.com/agent-skill.md)
clawdio777 avatar
Aeonos

clawdio777/aeonos

AI search visibility MCP. Get cited by ChatGPT, Perplexity, Claude, and Google AI Overviews.