streeteasy-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@streeteasy-mcpSearch for 2-bedroom apartments in Brooklyn under $3000"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
streeteasy-mcp
A remote MCP server that wraps the StreetEasy GraphQL API so an LLM agent can search and parse NYC rental listings.
It vendors the streeteasy-api
client (v0.4.0) and exposes it over either stdio (local) or Streamable
HTTP (remote) transport, so it can be connected to by Claude or any MCP client.
Run this from a residential IP, not a cloud host. StreetEasy's API sits
behind PerimeterX bot-detection that blocks cloud/datacenter IPs (AWS, GCP,
Railway, etc.). The HTTP build deploys fine and the MCP layer works, but the
upstream search_rentals / get_rental_details calls get a 403 from a
datacenter. Running the stdio server locally from a normal home
connection works. See Run as a local MCP server.
Tools
Tool | Description |
| Search active NYC rentals by area, price, beds, baths, amenities, pets. Returns compact listings + |
| Full detail for one listing id: description, amenities, pricing history, building info, nearby transit/schools, and resolved media — |
| Look up StreetEasy area names ↔ numeric codes (optionally filtered by a search term). |
| List the valid amenity enum tokens. |
search_rentals accepts area names ("MANHATTAN", "Williamsburg",
"upper east side") or numeric codes, and validates amenity tokens against the
known set.
Media
Photos resolve to Zillow's CDN (photos.zillowstatic.com/fp/{key}-se_large_800_400.jpg),
videos to their provider watch URL (YouTube/Vimeo) plus a thumbnail, and 3D
tours to a direct tour3dUrl. All are public — no auth required.
Not included: contact info & inquiries
Listing agent contact details and "request a tour" inquiries are not exposed.
They live behind StreetEasy's contact flow, which is protected by PerimeterX
bot-detection (a "Press & Hold" human check). Automating it would mean evading
bot-detection, so it's intentionally left out — the right pattern is to surface
the listing url and let a human submit the tour request in their browser.
Related MCP server: Daft.ie MCP Server
Endpoints
POST /mcp— the MCP Streamable HTTP endpoint (stateless).GET /andGET /health— health checks.
Run as a local MCP server (recommended)
Runs over stdio from your machine's residential IP — the configuration that actually reaches StreetEasy.
npm install
npm run build
# register with Claude Code (uses the stdio entry point):
claude mcp add streeteasy -- node "$(pwd)/dist/stdio.js"Then ask Claude to search rentals. To run the stdio server by hand:
npm run start:stdioRun as an HTTP server
npm install
npm run build
npm start # listens on $PORT (default 3000), POST /mcpTest it with the MCP SDK client (see test-client.mjs):
MCP_URL=http://localhost:3000/mcp node test-client.mjsConfiguration
Env var | Purpose |
| Port to listen on. Railway sets this automatically. |
| Optional. If set, |
Deploy on Railway
This repo ships a Dockerfile. With the Railway CLI:
railway login
railway init --name streeteasy-mcp
railway up
railway domain # generate a public URL
# optional: railway variables --set MCP_AUTH_TOKEN=<token>Connect from Claude Code
claude mcp add --transport http streeteasy https://<your-app>.up.railway.app/mcp
# if you set a token:
claude mcp add --transport http streeteasy https://<your-app>.up.railway.app/mcp \
--header "Authorization: Bearer <token>"Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Alec2435/streeteasy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server