- Home
- MCP servers
- Property Valuation
Property Valuation
- javascript
3
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
This MCP Server provides multi‑dimensional community ratings, community valuation, and individual property valuation to power AI assistants in real estate scenarios such as transactions, due diligence, and collateral risk assessments. It offers standardized Markdown outputs and secure APPID authorized access to ensure reliable data for your workflows.
How to use
You can integrate this server with any MCP client to access three core capabilities: community ratings, community valuations, and property valuations. Use the stdio-based local runtime for quick testing, or connect to the online SSE endpoint for a hosted service. Each tool returns structured information that you can display in your UI or chain into larger analysis reports.
Core workflow patterns you’ll typically follow: authenticate with your APPID, start the MCP client configured to the chosen transport (stdio or SSE), and then invoke the three available tools from your client’s tool list. Ensure your client shows get_community_rating, get_community_valuation, and get_property_valuation as available tools once connected.
How to install
Prerequisites: you need Node.js and npm installed on your machine. You also should have access to an MCP client that supports MCP servers.
Option A: Run via stdio locally (recommended for testing and development) Start by obtaining an APPID from the designated contact. Then configure your MCP client to run the stdio server with npx.
{
"mcpServers": {
"cih-property-valuation": {
"transportType": "stdio",
"command": "npx",
"args": ["-y", "mcp-property-valuation-server@0.0.27"],
"env": {
"MCP-INDUSTRY-APPID": "YOUR_APPID"
}
}
}
}
Option B: Connect to the online SSE service (remote server) If you have a publicly accessible service URL, configure your MCP client to use the SSE transport and provide the required APPID in the headers.
{
"mcpServers": {
"cih-property-valuation": {
"transportType": "sse",
"url": "https://creis.cih-index.com/mcp/sse",
"headers": {
"MCP-INDUSTRY-APPID": "YOUR_APPID"
}
}
}
}
Additional guidance
After you configure and restart your MCP client, you should see three tools available: get_community_rating, get_community_valuation, and get_property_valuation. Use these tools to request data for the city, district, and community you’re analyzing, and to obtain precise property valuations when you supply the required property details.
Notes and tips
Make sure your APPID is kept secure and not exposed in client logs or screenshots. The SSE approach requires a public endpoint; ensure you have proper network access and permissions. The stdio approach runs the server locally via npx, which is convenient for rapid testing and development.
Security and access
Access to all tools requires a valid MCP-INDUSTRY-APPID. Treat this as a secret API key and rotate it if you suspect it has been compromised.
Examples of outputs
Small sample outputs for reference in your UI:
小区评级为 A
活跃度评级为 B
物业评级为 A
教育评级为 A
板块评级为 B
2024-01 小区均价为:65000 元/m²
2024-02 小区均价为:65500 元/m²
2024-03 小区均价为:66000 元/m²
**小区估值总价:** 850 万元
**小区估值单价:** 65385 元/m²
Available tools
get_community_rating
Determines the住宅小区 quality rating (A/B/C/D) based on activity, property services, education resources, and district position.
get_community_valuation
Provides average price per square meter for a community and price trend over a time range.
get_property_valuation
Estimates the total price and unit price for a single property using an evaluation model; usable for collateral valuation.