streamable-httpMITupdated 29d ago
MCP server for the Russian construction and real estate market. Search 3,395 construction companies, browse 4,468 house projects, compare prices, request quotes — all via the Model Context Protocol or REST API.
MCP Market Russia 能做什么?
MCP Market Russia 🏗️
MCP server for the Russian construction and real estate market. Search 3,395 construction companies, browse 4,468 house projects, compare prices, request quotes — all via the Model Context Protocol or REST API.
Listed in the official MCP Registry as io.github.devids77/mcp-market-ru.
What this is
A live, hosted MCP server that gives AI agents (Claude Desktop, Cursor, Cline, Continue, etc.) direct access to a curated catalog of Russian construction companies and home-building projects, complete with pricing, ratings, regions, photos and contact info aggregated from public sources.
No registration needed for the basic catalog — point your MCP client at https://mcp-market.ru/mcp and start asking questions.
Quick start — Claude Desktop
Open your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows: `%APPDATA%\Claude\claude_desktop_config.json
Add:
{
"mcpServers": {
"mcp-market": {
"url": "https://mcp-market.ru/mcp"
}
}
}
Restart Claude Desktop. The 24 tools are now available — Claude will call them automatically when you ask construction-related questions.
Quick start — Cursor
Settings → MCP → Add new MCP server. URL: https://mcp-market.ru/mcp
Quick start — REST API
Free tier works without an API key:
# Search companies
curl "https://mcp-market.ru/api/v1/search/companies?q=каркасные+дома+в+спб"
# Get a specific company
curl "https://mcp-market.ru/api/v1/companies/<company_id>"
# Search projects by area and budget
curl "https://mcp-market.ru/api/v1/search/projects?q=брус+150&min_price=3000000"
# Catalog stats
curl "https://mcp-market.ru/api/dashboard/stats"
Paid tiers (Analytics, AI Tools) require an API key — pass it as X-API-Key header or ?api_key= query param.
What you can ask
Example prompts that work well with the MCP server:
- "Find frame houses (каркасные дома) in Moscow region under 12 million rubles"
- "Compare timber (брус) projects between 120-150 m²"
- "Show top-10 companies in Krasnodar region by rating"
- "Send a quote request to company X with my contact details"
- "What's the average price per m² for monolith houses in St Petersburg?"
The server supports both Russian and English queries with proper synonym handling for Russian regions (спб → Saint Petersburg, мск → Moscow, etc.) and construction terminology.
Available tools
| Tool | Tier | Description |
|---|---|---|
search_companies |
Free | Search construction companies by category, region, budget, tags |
search_projects |
Free | Search house projects by area, price, material |
get_company |
Free | Full company details with all projects |
get_project |
Free | Complete project card (specs, price, photos) |
get_categories |
Free | List all company categories with counts |
get_regions |
Free | List all regions with company counts |
get_stats |
Free | Catalog statistics |
smart_match |
Free | Match companies to budget + region + category |
request_quote |
Free | Send a lead/quote request to a company |
compare |
Free | Compare multiple companies side-by-side |
calculate |
Free | Project cost estimator |
analytics/market |
Starter | Regional market analytics |
analytics/best-companies |
Starter | Top companies with extended metrics |
analytics/price-comparison |
Starter | Price comparison across segments |
analytics/report |
Starter | Full analytical report |
ai/recommend |
Pro | AI recommendations for client criteria |
ai/estimate |
Pro | AI cost estimate from project description |
ai/reviews |
Pro | AI-summarized reviews per company |
ai/trends |
Pro | AI market trend analysis |
ai/deep-profile |
Pro | Deep company profile with insights |
ai/region-compare |
Pro | AI comparison of regions |
Pricing
| Plan | Price | Requests/day | Tools |
|---|---|---|---|
| Free | ₽0 | 100 | 24 (all Free-tier tools) |
| Starter | ₽2 990/mo | 1 000 | 24 + Analytics |
| Pro | ₽7 990/mo | 5 000 | 24 + Analytics + AI Tools |
| Enterprise | ₽24 990/mo | unlimited | 24 + custom, SLA, white-label |
Get a key at https://mcp-market.ru/pricing.
Data
- 3,395 companies aggregated from public sources (2GIS, Avito, construction catalogs, Yandex)
- 4,468 projects with specs, materials, area, price, photos
- 18 regions covered (Moscow, St Petersburg, Krasnodar, Yekaterinburg, …)
- 67% tagged via regex + GLM-4.6 classifier — search by tag works for queries like "bath house in Krasnodar"
- Live data: companies and projects refreshed periodically; check
/dashboardfor current counts
For construction companies
Your company is already in the catalog? Claim your profile to:
- Edit your description, photos, and contact info
- Add detailed project portfolios
- Receive leads from AI agents directly to your inbox + Telegram
- Get analytics on which AI queries reached your card
Email info@mcp-market.ru to claim.
Architecture
- FastAPI + FastMCP for HTTP + MCP transport layered on the same
/mcp/endpoint - PostgreSQL 16 with full-text + GIN-indexed tag array
- Docker Compose deployment
- Nginx + Let's Encrypt for HTTPS termination
- Single-flight cache on heavy endpoints (
dashboard/overviewis 30s)
Links
- Live site: https://mcp-market.ru
- Demo (smart_match without registration): /demo
- Live dashboard: /dashboard
- Pricing: /pricing
- Quickstart docs: /quickstart
- MCP endpoint:
https://mcp-market.ru/mcp - Contact: info@mcp-market.ru
Error codes
| Code | Meaning |
|---|---|
| 200 | OK |
| 400 | Bad request parameters |
| 401 | API key required for this endpoint |
| 403 | Your plan doesn't cover this endpoint |
| 404 | Not found |
| 429 | Daily request limit exceeded |
| 500 | Server error — report to info@mcp-market.ru |
License
MIT
安装
把 MCP Market Russia 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http mcp-market-russia https://mcp-market.ru/mcp/codex mcp add mcp-market-russia --url https://mcp-market.ru/mcp/{
"mcpServers": {
"mcp-market-russia": {
"url": "https://mcp-market.ru/mcp/"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"mcp-market-russia": {
"type": "http",
"url": "https://mcp-market.ru/mcp/"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"mcp-market-russia": {
"url": "https://mcp-market.ru/mcp/"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-market-russia": {
"serverUrl": "https://mcp-market.ru/mcp/"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
9 个工具
MCP Market Russia 向已连接的智能体提供 9 个工具。
- search_companies
- Free
- search_projects
- Free
- get_company
- Free
- get_project
- Free
- get_categories
- Free
- get_regions
- Free
- get_stats
- Free
- smart_match
- Free
- request_quote
- Free
评分
75 / 100
良好
- 文档25/25
- 维护19/25
- 可信度13/20
- 能力6/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 21 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 9 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 3.2.0最新 | 2026年7月13日 |