RentRollAPI
Server Details
Extract verified data from CRE rent rolls and T12 operating statements (PDF, Excel, CSV, scans)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- ekvanauk/rentrollapi-dotnet
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 2 of 2 tools scored.
The two tools target distinct document types: one for T12/operating statements and one for rent rolls. There is no overlap in purpose; an agent can easily select the correct tool based on the document at hand.
Both tool names follow a consistent 'extract_' prefix followed by the document type noun. The pattern is uniform and predictable, making it easy to infer the tool's function from its name.
With only two tools, the server is minimal but well-scoped for its stated domain of extracting data from commercial real estate documents. It covers the two most common document types; a third tool might be plausible but the count is not excessive or insufficient for a focused utility.
The server covers the two core document types in commercial real estate analysis (T12/operating statement and rent roll). Minor gaps could include lease documents or property financial summaries, but for the apparent purpose, the surface is reasonably complete with no dead ends.
Available Tools
2 toolsextract_operating_statementARead-onlyInspect
Extract structured, verified data from a commercial real estate T12 / operating statement (trailing-twelve-month income and expense report; PDF, Excel .xlsx, or CSV; native or scanned). Returns property info, reporting months, and categorized line items (income, expenses, subtotals) with monthly values and totals, plus a deterministic verification report that reconciles row totals against monthly values and Effective Gross Income, Total Operating Expenses, and Net Operating Income against the underlying rows. Every field carries a status and confidence; uncertain fields are flagged, never silently guessed. Anonymous use is limited to 3 documents/day; pass an API key from rentrollapi.com via the X-Api-Key header for more.
| Name | Required | Description | Default |
|---|---|---|---|
| fileName | Yes | Original file name including extension, e.g. 't12.pdf' — the extension guides format detection. | |
| documentBase64 | Yes | The operating statement document encoded as base64 (PDF, XLSX, or CSV bytes). Max 25 MB decoded. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the tool returns a verification report with reconciliation logic, flags uncertain fields, and never silently guesses. It also mentions per-field status/confidence, which adds significant behavioral detail not present in annotations.
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 three dense, information-rich sentences. It front-loads the core purpose, then details the output and verification behavior, and finally covers usage limits. Every sentence earns its place with no redundancy or filler.
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 that there is no output schema, the description fully explains the return value (property info, reporting months, categorized line items, verification report) and key behavioral aspects (status/confidence flags, no silent guessing). It also covers limitations and authentication, making it complete for an agent to decide on 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 already provides 100% coverage with descriptions for both parameters, including the max size and format detection via fileName. The tool description adds little beyond this, only noting supported formats (PDF, XLSX, CSV) which is already implied by the schema. Baseline 3 is appropriate.
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 uses a specific verb ('Extract') and resource ('commercial real estate T12 / operating statement'), clearly distinguishing it from sibling tool extract_rent_roll. It also lists supported formats and the nature of the output, leaving no ambiguity about what the tool does.
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 states the tool is for T12/operating statements, giving clear context for when to use it. It does not explicitly name the sibling tool as an alternative, but the resource type makes the distinction obvious. It also provides usage limits (3 documents/day anonymous) and guidance on how to increase them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_rent_rollARead-onlyInspect
Extract structured, verified data from a commercial real estate rent roll document (PDF, Excel .xlsx, or CSV; native or scanned). Returns property info, one record per unit (unit number, tenant, square feet, lease dates, rents, occupancy), stated totals, and a deterministic verification report that reconciles recomputed totals against the document's stated totals. Every field carries a status and confidence; uncertain fields are flagged, never silently guessed. Anonymous use is limited to 3 documents/day; pass an API key from rentrollapi.com via the X-Api-Key header for more.
| Name | Required | Description | Default |
|---|---|---|---|
| fileName | Yes | Original file name including extension, e.g. 'rent-roll.pdf' — the extension guides format detection. | |
| documentBase64 | Yes | The rent roll document encoded as base64 (PDF, XLSX, or CSV bytes). Max 25 MB decoded. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses extensive behavior: it returns a deterministic verification report reconciling recomputed totals against stated totals, flags uncertain fields with status/confidence, never guesses, and includes anonymous usage limits (3/day) plus API key authentication via X-Api-Key header. This is rich behavioral context that exceeds annotation coverage.
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 three sentences, front-loaded with the primary purpose, and every sentence earns its place: purpose and scope, output structure and verification behavior, and usage limits/authentication. No redundant or filler content.
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 absence of an output schema, the description provides a comprehensive overview of return values (property info, per-unit records, stated totals, verification report) and behavioral guarantees (status/confidence, flagging uncertain fields). It covers formats, limitations, and authentication. It does not enumerate every output field, but for a 2-parameter tool with no output schema, the description is remarkably complete.
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% for both parameters, and the schema already explains documentBase64 as base64-encoded PDF/XLSX/CSV bytes and fileName as the original name with extension guiding format detection. The description adds mention of scanned documents and size limits but does not meaningfully expand parameter semantics beyond the schema, so baseline 3 applies.
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 extracts structured, verified data from a rent roll document, specifying the document types (PDF, Excel .xlsx, or CSV; native or scanned). This verb+resource combination is specific and distinguishes it from the sibling tool extract_operating_statement, which targets a different document type.
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 use for rent roll documents and contrasts with the sibling tool by naming the document type, but it does not explicitly state when to use this tool versus extract_operating_statement or provide exclusion criteria. The usage context is clear but not explicitly differentiated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityBmaintenanceEnables querying, extracting terms, and projecting rent from commercial lease documents via MCP tools.Last updated
- Alicense-qualityBmaintenanceProvides live commercial real estate data (rates, demographics) and analysis tools (DCF, rent roll parsing, lease abstraction, IC memo generation) within Claude Desktop.Last updated1MIT
- Alicense-qualityAmaintenanceParse crypto exchange CSVs (Coinbase, Binance, Kraken, +11 more) and bank statement PDFs (Chase, BofA, +11 more) into Koinly, TurboTax, CoinLedger, or ZenLedger formats. Free tier: 25 files/month, no credit card required.Last updated16ISC
- AlicenseAqualityBmaintenanceConvert PDFs to structured JSON. Extract invoices, bank statements, contracts, and more. Pay per call via x402 USDC.Last updated58MIT