Rentcast MCP Server
Supports Docker containerization for production deployment of the real estate data MCP server
Uses .ENV files for secure configuration management of API keys and server settings
Built using FastAPI framework to provide the MCP server endpoints and HTTP API interface for real estate data access
Implemented in Python to provide MCP-compliant real estate data integration with intelligent API optimization features
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., "@Rentcast MCP Serverwhat's the estimated value of a 3-bedroom house at 123 Main St, Austin, TX?"
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.
š Rentcast MCP Server
A Model Context Protocol (MCP) server that provides access to Rentcast Real Estate API data through a standardized interface. This server enables AI assistants and applications to retrieve comprehensive real estate information including property details, market analysis, rent estimates, and property valuations.
⨠Features
š Property Search: Search properties with filters (city, state, bedrooms, bathrooms, etc.)
š² Random Properties: Get random properties for market analysis
š Market Analysis: Comprehensive market statistics and trends
š° Property Valuation: Automated property value estimates with comparables
š Rent Estimates: Long-term rent estimates with comparable properties
šļø Sale Listings: Current properties for sale
šļø Rental Listings: Current properties for rent
š Property Details: Detailed property information and parameters
Related MCP server: Estaite Solutions
š Quick Start
Prerequisites
Node.js 18+
Rentcast API key (Get one here)
Installation
# Clone the repository
git clone https://github.com/tandat8503/mcp_rentcast.git
cd mcp_rentcast
# Install dependencies
npm install
# Copy environment file
cp .env.example .env
# Edit .env with your Rentcast API key
RENTCAST_API_KEY=your_api_key_here
# Build the project
npm run build
# Start the server
npm startUsing with MCP Inspector
# Start MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.js
# Open browser at http://localhost:6274
# Use the provided auth token to access the interfaceš ļø Available Tools
1. search_properties
Search for properties with comprehensive information.
Parameters:
city(optional): City name (e.g., "Austin", "New York")state(optional): State abbreviation (e.g., "TX", "CA")zipCode(optional): ZIP code (e.g., "78705")bedrooms(optional): Number of bedrooms (1-10)bathrooms(optional): Number of bathrooms (1-10)propertyType(optional): Property type (e.g., "Single Family", "Condo")limit(optional): Maximum results (default: 15, max: 50)
Example:
{
"city": "Austin",
"state": "TX",
"bedrooms": 2,
"limit": 20
}2. get_random_properties
Get random properties for market analysis.
Parameters:
city(optional): City namestate(optional): State abbreviationzipCode(optional): ZIP codelimit(optional): Number of properties (default: 10, max: 50)
3. analyze_market
Get comprehensive market statistics and trends.
Parameters:
zipCode(optional): ZIP code for analysiscity(optional): City namestate(optional): State abbreviationdataType(optional): "All", "Sale", or "Rental" (default: "All")
4. get_property_value
Get automated property value estimates.
Required (one of):
address: Full property addresslatitude+longitude: GPS coordinatespropertyId: Unique property identifier
Optional:
propertyType: Property typebedrooms: Number of bedroomsbathrooms: Number of bathroomssquareFootage: Property size in sq ft
Example:
{
"address": "1011 W 23rd St, Austin, TX 78705",
"propertyType": "Apartment",
"bedrooms": 1,
"bathrooms": 1
}5. get_rent_estimates
Get long-term rent estimates with comparable properties.
Required (one of):
address: Full property addresslatitude+longitude: GPS coordinatespropertyId: Unique property identifier
Optional:
propertyType: Property typebedrooms: Number of bedroomsbathrooms: Number of bathroomssquareFootage: Property size in sq ft
6. get_sale_listings
Get current properties for sale.
Parameters:
city(optional): City namestate(optional): State abbreviationzipCode(optional): ZIP codelimit(optional): Maximum results (default: 15, max: 50)
7. get_rental_listings
Get current properties for rent.
Parameters:
city(optional): City namestate(optional): State abbreviationzipCode(optional): ZIP codelimit(optional): Maximum results (default: 15, max: 50)
8. get_property_details
Get detailed property information.
Parameters:
id(required): Property or listing ID
9. get_server_status
Get server status and API usage information.
Parameters: None
š§ Configuration
Environment Variables
Variable | Description | Default | Required |
| Your Rentcast API key | - | ā |
| Rentcast API base URL |
| ā |
| Maximum API calls per session |
| ā |
| API call timeout |
| ā |
| Enable rate limiting |
| ā |
| Rate limit per minute |
| ā |
| Enable debug mode |
| ā |
| Log level |
| ā |
API Limits
Free Tier: 45 API calls per month
Default Session Limit: 40 calls per session
Rate Limiting: 60 calls per minute (configurable)
šļø Project Structure
mcp_rentcast/
āāā src/
ā āāā index.ts # Main MCP server implementation
ā āāā services/
ā ā āāā config.ts # Configuration service
ā ā āāā rentcast-api.ts # Rentcast API client
ā āāā types/
ā āāā index.ts # TypeScript type definitions
āāā dist/ # Compiled JavaScript output
āāā package.json # Project dependencies and scripts
āāā tsconfig.json # TypeScript configuration
āāā .env.example # Environment variables template
āāā .gitignore # Git ignore patterns
āāā README.md # This fileš Development
Scripts
# Build the project
npm run build
# Start in development mode with hot reload
npm run dev
# Start production server
npm start
# Run tests
npm test
# Lint code
npm run lint
# Format code
npm run formatBuilding
# Development build
npm run build
# The compiled output will be in the `dist/` directoryDebug Mode
The server includes comprehensive console logging for debugging:
Input Parameters: Logs all parameters received by tools
API Responses: Logs API call results and data samples
Error Handling: Detailed error logging with context
Performance: API call counts and rate limiting information
š Debugging
Console Logs
Each tool provides detailed logging:
š [tool_name] Tool called with params: { ... }
š [tool_name] Built search params: { ... }
š [tool_name] API result: { ... }
š [tool_name] Data sample: { ... }
š [tool_name] Tool completed successfullyCommon Issues
Missing API Key: Ensure
RENTCAST_API_KEYis set in.envAPI Limits: Monitor remaining API calls with
get_server_statusRate Limiting: Wait between API calls if rate limited
Invalid Parameters: Check parameter validation in console logs
š API Usage Optimization
Best Practices
Batch Requests: Use higher limits when possible to reduce API calls
Caching: Implement caching for frequently requested data
Parameter Validation: Provide accurate parameters for better results
Error Handling: Implement proper error handling for failed requests
Rate Limiting
Default: 60 calls per minute
Configurable via
RATE_LIMIT_PER_MINUTEAutomatic delays between calls when enabled
š¤ Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Links
š Support
For issues and questions:
Check the console logs for debugging information
Verify your API key and configuration
Check Rentcast API status and limits
Open an issue in the repository
Built with ā¤ļø for the MCP community
Available Tools
8 toolsanalyze_marketC
Get comprehensive market statistics and trends for specific locations
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name for market analysis | |
| dataType | No | Type of market data to analyze | All |
| state | No | State abbreviation for market analysis | |
| zipCode | No | ZIP code for market analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read-only operation ('Get') but doesn't specify permissions, rate limits, data freshness, or what 'comprehensive' entails (e.g., time range, metrics included). This is inadequate for a tool that likely involves complex data retrieval.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part of the sentence contributes meaning, making it appropriately sized and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (market analysis with multiple parameters) and lack of annotations and output schema, the description is insufficient. It doesn't explain what 'comprehensive market statistics and trends' includes, potential limitations, or response format, leaving significant gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no additional parameter semantics beyond implying location-based filtering, which is already clear from the schema. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('comprehensive market statistics and trends'), and specifies the scope ('for specific locations'). However, it doesn't explicitly differentiate from sibling tools like 'get_rent_estimates' or 'search_properties' that might also provide market-related data, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or compare to sibling tools such as 'get_rent_estimates' or 'get_sale_listings', leaving the agent with no context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_property_detailsB
Get detailed property information and prepare parameters for property value estimation
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Property or listing ID for detailed information |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'prepare parameters for property value estimation,' hinting at a preparatory or intermediate step, but fails to clarify if this is a read-only operation, what data it returns (e.g., structured details vs. raw parameters), or any limitations (e.g., rate limits, authentication needs). This leaves significant gaps for a tool with potential downstream effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action ('Get detailed property information') and adds secondary purpose ('prepare parameters for property value estimation') without redundancy. Every word earns its place, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (single parameter, no output schema, no annotations), the description is minimally adequate. It states the purpose clearly but lacks behavioral details (e.g., return format, error handling) and usage context, which are needed for full completeness. Without an output schema, it should ideally hint at what 'detailed property information' entails, but it doesn't, leaving room for improvement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'id' well-documented as 'Property or listing ID for detailed information.' The description adds no additional parameter semantics beyond this, such as format examples or constraints, so it meets the baseline score of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('Get detailed property information' and 'prepare parameters for property value estimation'), which distinguishes it from siblings like 'get_property_value' (which likely returns the value itself) and 'search_properties' (which likely returns a list). However, it doesn't explicitly differentiate from all siblings (e.g., 'get_rental_listings' might also provide property details), keeping it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or compare to siblings like 'get_property_value' (for actual value estimation) or 'search_properties' (for broader searches), leaving the agent to infer usage from context alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_property_valueC
Get automated property value estimates with comparable properties
| Name | Required | Description | Default |
|---|---|---|---|
| address | No | Property address for valuation | |
| bathrooms | No | Number of bathrooms | |
| bedrooms | No | Number of bedrooms | |
| latitude | No | Property latitude coordinate | |
| longitude | No | Property longitude coordinate | |
| propertyId | No | Property ID for valuation | |
| propertyType | No | Property type for valuation | |
| squareFootage | No | Property square footage |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is for 'automated property value estimates' but doesn't explain how the estimates are generated, whether they're real-time or cached, what data sources are used, or any rate limits or authentication requirements. This leaves significant gaps in understanding the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of property valuation with 8 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what the output contains (e.g., estimated value range, confidence scores, comparable properties details), leaving the agent with incomplete context for proper tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with all 8 parameters well-documented in the schema itself. The description adds no additional parameter semantics beyond implying that inputs relate to 'property value estimates', so it meets the baseline of 3 without compensating for any schema gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get automated property value estimates') and the resource ('with comparable properties'), making the purpose understandable. However, it doesn't explicitly differentiate this tool from sibling tools like 'get_rent_estimates' or 'analyze_market', which might also provide property-related estimates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_rent_estimates' or 'get_property_details'. It mentions 'comparable properties' but doesn't clarify if this is for sales, rentals, or general valuation, leaving usage context implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_random_propertiesB
Get random properties with comprehensive info (default: 10, max: 50 for free tier) for market analysis including price history, lot size, and year built
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City for random property selection | |
| limit | No | Number of random properties to return (default: 10, max: 50 for free tier) | |
| state | No | State for random property selection | |
| zipCode | No | ZIP code for random property selection |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: the tool returns 'random properties', includes 'comprehensive info' like 'price history, lot size, and year built', and mentions rate limits ('max: 50 for free tier'). However, it doesn't cover aspects like authentication needs, error handling, or response format, leaving gaps for a tool with no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and includes key details like defaults and limits. It avoids redundancy, though it could be slightly more structured by separating usage context from parameter info.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is moderately complete for a tool with 4 parameters and 100% schema coverage. It covers purpose, key behavior, and parameter hints, but lacks details on output format, error cases, or deeper usage scenarios, which would be helpful for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all four parameters. The description adds marginal value by reinforcing the 'limit' parameter's default and max values, but doesn't provide additional semantic context beyond what's in the schema, such as how 'city', 'state', and 'zipCode' interact or affect randomness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get random properties with comprehensive info' for 'market analysis'. It specifies the verb ('Get'), resource ('random properties'), and scope ('market analysis'), though it doesn't explicitly differentiate from siblings like 'search_properties' or 'get_property_details' beyond the 'random' aspect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for 'market analysis' and mentions default/max limits, but doesn't provide explicit guidance on when to use this tool versus alternatives like 'search_properties' or 'get_property_details'. It hints at context with 'free tier' but lacks clear when-to-use or when-not-to-use statements.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rental_listingsB
Get rental listings with comprehensive property information. This tool searches for properties currently for rent.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City for listing search (e.g., 'Austin', 'New York', 'Los Angeles') | |
| limit | No | Maximum number of listings to return (default: 15, max: 50 for free tier) | |
| state | No | State for listing search (e.g., 'TX', 'NY', 'CA') | |
| zipCode | No | ZIP code for listing search (e.g., '78705', '10001', '90210') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'searches for properties', implying a read-only operation, but doesn't cover critical aspects like authentication needs, rate limits, pagination, error handling, or what 'comprehensive property information' entails. This leaves significant gaps for an agent to understand how to use it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences that efficiently convey the core functionality. It's front-loaded with the main purpose. However, the phrase 'comprehensive property information' is vague and could be more specific to improve clarity without adding length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a tool with 4 parameters and complex search functionality. It lacks details on return values (e.g., format, fields), error cases, and behavioral constraints like rate limits or authentication, which are essential for an agent to use it correctly in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all four parameters (city, limit, state, zipCode). The description adds no additional parameter semantics beyond what's in the schema, such as how parameters interact or search logic. Baseline 3 is appropriate when the schema handles parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('rental listings'), and distinguishes it from sale listings by specifying 'for rent'. However, it doesn't explicitly differentiate from sibling tools like 'search_properties' or 'get_random_properties', which might also retrieve rental listings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for searching rental properties, but provides no explicit guidance on when to use this tool versus alternatives like 'search_properties' or 'get_sale_listings'. It mentions 'currently for rent', which gives some context, but lacks clear when/when-not instructions or named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rent_estimatesC
Get long-term rent estimates with comparable rental properties. This tool helps you estimate monthly rental prices for properties based on location, property characteristics, and market data.
| Name | Required | Description | Default |
|---|---|---|---|
| address | No | Full property address (e.g., '1011 W 23rd St, Apt 101, Austin, TX 78705') | |
| bathrooms | No | Number of bathrooms (e.g., 1, 1.5, 2) | |
| bedrooms | No | Number of bedrooms (e.g., 1, 2, 3) | |
| latitude | No | Property latitude coordinate (e.g., 30.287007) | |
| longitude | No | Property longitude coordinate (e.g., -97.748941) | |
| propertyId | No | Unique property identifier from Rentcast database (e.g., '12345') | |
| propertyType | No | Type of property (e.g., 'Apartment', 'House', 'Condo', 'Townhouse') | |
| squareFootage | No | Property size in square feet (e.g., 450, 1200, 2000) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool 'helps you estimate' but doesn't disclose behavioral traits like whether it's a read-only operation, requires authentication, has rate limits, returns confidence intervals, or how 'comparable rental properties' are selected. The description is functional but lacks operational context needed for an agent to use it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two sentences that directly state the tool's purpose and utility. It's front-loaded with the core function and avoids unnecessary elaboration. However, the second sentence could be slightly more precise about what 'helps you estimate' entails.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain what the output looks like (e.g., estimated rent range, comparables list), behavioral constraints, or how parameters interact (e.g., whether address or latitude/longitude is prioritized). For a tool with rich input schema but no other structured context, the description should provide more operational guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 8 parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'location, property characteristics, and market data' which loosely corresponds to parameters like address/latitude/longitude, bedrooms/bathrooms/squareFootage/propertyType, but doesn't provide additional semantics, constraints, or usage guidance. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get long-term rent estimates with comparable rental properties' and 'estimate monthly rental prices for properties'. It specifies the action (get/estimate), resource (rent estimates), and scope (long-term, with comparables). However, it doesn't explicitly differentiate from sibling tools like 'get_property_value' or 'get_rental_listings', which likely provide different types of property data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'helps you estimate monthly rental prices' but doesn't specify scenarios where this is preferred over sibling tools like 'get_property_value' (which might estimate sale value) or 'get_rental_listings' (which might show actual listings). No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sale_listingsC
Get sale listings with comprehensive property information. This tool searches for properties currently for sale.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City for listing search (e.g., 'Austin', 'New York', 'Los Angeles') | |
| limit | No | Maximum number of listings to return (default: 15, max: 50 for free tier) | |
| state | No | State for listing search (e.g., 'TX', 'NY', 'CA') | |
| zipCode | No | ZIP code for listing search (e.g., '78705', '10001', '90210') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only mentions it 'searches' without disclosing behavioral traits like whether it requires authentication, has rate limits, returns paginated results, or what happens with partial matches. The 'comprehensive property information' phrase is vague about what's included.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences that efficiently convey the core purpose. The first sentence establishes the tool's function, and the second clarifies the search scope. No wasted words, though it could be slightly more structured with usage guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 4 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what 'comprehensive property information' includes, how results are formatted, whether all parameters are optional, or how the search behaves with multiple location parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 4 parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for adequate but not enhanced parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'get' and resource 'sale listings' with the purpose 'searches for properties currently for sale'. It distinguishes from rental listings but doesn't explicitly differentiate from other search-related siblings like search_properties or get_random_properties.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like search_properties, get_random_properties, or get_rental_listings. The description only states what it does without providing context about when it's the appropriate choice among the seven sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_propertiesB
Search for properties with basic property information (default: 15, max: 50 for free tier) including city, state, bedrooms, bathrooms, square footage, lot size, and year built. Note: Price data may not be available for all properties.
| Name | Required | Description | Default |
|---|---|---|---|
| bathrooms | No | Number of bathrooms (e.g., 1, 1.5, 2) | |
| bedrooms | No | Number of bedrooms (e.g., 1, 2, 3) | |
| city | No | City name for property search (e.g., 'Austin', 'New York') | |
| limit | No | Maximum number of properties to return (default: 15, max: 50 for free tier) | |
| propertyType | No | Property type (e.g., 'Single Family', 'Condo', 'Townhouse') | |
| state | No | State abbreviation (e.g., 'TX', 'CA', 'NY') | |
| zipCode | No | ZIP code for location-based search (e.g., '78705', '90210') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context about default and max limits (15/50 for free tier) and notes that price data may not be unavailable, which helps set expectations. However, it lacks details on pagination, error handling, authentication needs, or rate limits, leaving gaps for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences: the first states the purpose and included fields, the second adds important behavioral notes. It's front-loaded with core functionality and avoids redundancy. Minor improvement could be made by integrating the limit info more seamlessly, but overall it's efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 7 parameters with full schema coverage and no output schema, the description provides adequate context for a search tool but has gaps. It covers return fields and data limitations (price availability), but lacks details on result format, error cases, or how results are ordered. Without annotations, it should ideally include more behavioral transparency for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 7 parameters thoroughly. The description lists example fields returned (city, state, bedrooms, etc.), which adds marginal value by clarifying the output scope, but doesn't provide additional parameter semantics beyond what's in the schema. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for properties with basic property information, specifying the verb 'search' and resource 'properties'. It distinguishes itself from siblings like 'get_property_details' or 'get_sale_listings' by focusing on search functionality with basic info, though it doesn't explicitly contrast with all siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_sale_listings' or 'get_rental_listings'. It mentions a default and max limit for free tier users, but this is a behavioral constraint rather than usage context. No explicit when/when-not statements or alternative tool references are included.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v1.0.0- First observed
analyze_market - First observed
get_property_details - First observed
get_property_value - First observed
get_random_properties - First observed
get_rent_estimates - First observed
get_rental_listings - First observed
get_sale_listings - First observed
search_properties
TDQS
Most tools have distinct purposes, but there is some overlap between get_property_details and get_property_value, as both involve property estimation, which could cause confusion. Tools like get_rental_listings and get_sale_listings are clearly separated by transaction type, and analyze_market stands out for broader trends.
All tool names follow a consistent verb_noun pattern with underscores, such as analyze_market, get_property_details, and search_properties. This predictability makes it easy for agents to understand and navigate the toolset without naming confusion.
With 8 tools, the server is well-scoped for real estate data analysis, covering key areas like market trends, property details, valuations, listings, and searches. Each tool serves a specific function without redundancy, fitting the domain appropriately.
The toolset provides comprehensive coverage for real estate data, including market analysis, property details, valuations, and listings for both rental and sale. A minor gap is the lack of tools for updating or managing data (e.g., CRUD operations), but core retrieval and analysis functions are well-covered for agent workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Rentcast MCP ā wraps Rentcast API (api.rentcast.io/v1)
U.S. real-estate data: property records, AVM value + rent estimates, sale/rental listings.
Search real-estate deals, rank top areas, run rental/BRRRR/flip analysis, pull sold comps.
One API for public web data across social, directories and real estate, as clean JSON.
Related MCP Servers
- AlicenseBqualityDmaintenanceConnects Claude to the RentCast API to provide tools for accessing property valuations, rent estimates, and real estate market statistics. Users can retrieve detailed property data and active listings for specific ZIP codes through natural language queries.121MIT
- AlicenseNot gradedqualityDmaintenanceSubmarket-level US residential rental intelligence for AI agents. Search, compare, rank, and analyze rent data, trends, vacancy, affordability, and days on market across 1,000+ named submarkets in the 20+ largest US metros. ZIP-level and metro-level queries included. Always current, always expanding. Free tier available.1MIT
- AlicenseAqualityDmaintenanceWraps the RentCast API to search houses for sale, get valuations, rent estimates, and market statistics.8MIT
- AlicenseNot gradedqualityCmaintenanceWraps the Rentcast API to provide real estate data access for AI agents through the Model Context Protocol, part of the Pipeworx gateway.15MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/tandat8503/mcp_rentcast'
If you have feedback or need assistance with the MCP directory API, please join our Discord server