For AI agents
Connect any AI agent to 140M+ US properties. OpenAPI spec for auto-generated tool calls, MCP server for Claude and Cursor, or raw REST for everything else.
OpenAPI Spec
Our OpenAPI 3.1 spec is publicly accessible — no auth required to read it. Import it into any tool that speaks OpenAPI: GPT Actions, LangChain, CrewAI, AutoGen, etc.
https://straply.com/openapi.json https://straply.com/.well-known/openapi.json 6 endpoints, 8.5KB. Covers property search, lookup by address, market stats, and more. Response schemas and parameter descriptions included.
MCP Server (Model Context Protocol)
For Claude Desktop, Cursor, VS Code Copilot, and any MCP-compatible agent. Our MCP server exposes 4 tools that let agents query real estate data conversationally.
POST https://api.straply.com/v1/mcp
Authorization: Bearer $STRAPLY_KEY
Content-Type: application/json Available tools
Claude Desktop setup
Add this to your Claude Desktop MCP config (~/.config/claude/mcp.json):
{
"servers": {
"straply": {
"url": "https://api.straply.com/v1/mcp",
"auth": {
"type": "bearer",
"token": "stp_live_YOUR_API_KEY"
}
}
}
} Example conversation
Integration guides
OpenAI GPT Actions
Build a custom GPT that queries Straply data.
- Create a GPT at chat.openai.com
- Add an Action → import from URL
- Paste:
https://straply.com/openapi.json - Add your API key as Bearer auth
LangChain / CrewAI
Use Straply as a tool in your agent chain.
from langchain.tools import OpenAPITool
tool = OpenAPITool.from_spec(
"https://straply.com/openapi.json",
headers={"Authorization":
"Bearer stp_live_..."}
) Cursor / VS Code Copilot
Query property data while coding.
Add Straply as an MCP server in your editor settings. Copilot and Cursor both support MCP natively.
Raw REST API
For any framework or language.
curl "https://api.straply.com/v1/
properties?zipCode=90210" \
-H "Authorization: Bearer ..." Get started in 2 minutes
Free tier: 1,000 requests/month. No credit card required.