Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Cost Seg Smart
C
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:22:29 PM

Cost Seg Smart

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Cost segregation study pricing and Year-1 depreciation/tax-savings estimates for US properties.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "cost-seg-smart": {
      "command": "npx",
      "args": [
        "-y",
        "cost-seg-smart"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

Cost Seg Smart β€” MCP Server

Hosted Model Context Protocol server for Cost Seg Smart. Lets Claude Desktop, Cursor, Claude Code, and any MCP-compatible AI agent get cost segregation study pricing and generate Stripe checkout URLs without scraping HTML.

Endpoint: https://costsegsmart.com/mcp Transport: Streamable HTTP (JSON-RPC 2.0) Auth: None β€” open commercial endpoint

This repo contains only the manifest. The server itself is implemented in costseg-report-service and hosted on Railway behind a Cloudflare Worker proxy.


What it does

Two tools:

get_cost_seg_quote

Returns the price of a cost segregation study for a specific property, plus Year-1 deduction and (if a tax bracket is provided) tax savings and ROI on the study fee. No engine run β€” pure tier lookup and arithmetic. Safe to call cheaply and repeatedly.

Example call:

config.json
{
  "property_type": "str",
  "purchase_price": 750000,
  "tax_bracket": 0.32
}

Returns:

config.json
{
  "property_type": "str",
  "property_type_label": "Short-Term Rental",
  "purchase_price": 750000,
  "study_cost": 995,
  "deduction_estimate_year_one": 184500,
  "tax_savings_year_one": 59040,
  "roi_multiple": 59,
  "currency": "USD"
}

get_cost_seg_payment_link

Generates a Stripe Checkout URL the buyer can click to purchase the study. Carries full property metadata + an explicit liability disclaimer naming the agent ("Order prepared by [agent] on behalf of the cardholder..."). Buyer completes payment in their browser; the report is generated automatically and emailed within 1 hour.

Always confirm the study_cost with the human buyer before generating a payment link.


Docs

Full landing page + per-client install guides: https://costsegsmart.com/mcp-server/

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

config.json
{
  "mcpServers": {
    "cost-seg-smart": {
      "transport": "streamable-http",
      "url": "https://costsegsmart.com/mcp"
    }
  }
}

Restart Claude Desktop. Both tools should appear in the tool palette.

Cursor

In your Cursor MCP settings, add:

config.json
{
  "cost-seg-smart": {
    "url": "https://costsegsmart.com/mcp"
  }
}

Claude Code

Terminal
claude mcp add cost-seg-smart https://costsegsmart.com/mcp

Via Smithery

Terminal
npx @smithery/cli install cost-seg-smart --client claude

Identifying your agent

When calling the endpoint, set the X-Agent-Name header so it appears in the buyer's Stripe Checkout disclaimer:

Code
X-Agent-Name: Claude

If unset, the disclaimer reads "Order prepared by an AI agent on behalf of the cardholder...". This is a legal/chargeback paper trail, not a marketing field β€” please use accurate values.


Property types supported

sfr, str, condo, condo_str, adu, duplex, triplex, fourplex, multifamily_small, multifamily, multifamily5, office, retail, industrial, mixed_use, medical_office, restaurant

Price range: $495 to $13,995 depending on type and purchase price. $25M+ properties route to a custom-quote email path.


What's covered + what's not

This MCP server is one part of a broader agentic-commerce surface:

SurfaceEndpointPurpose
MCPhttps://costsegsmart.com/mcpThis server. Two tools.
RESThttps://costsegsmart.com/api/quoteSame logic as get_cost_seg_quote over plain JSON HTTP
RESThttps://costsegsmart.com/api/payment-linkSame logic as get_cost_seg_payment_link
Product feedhttps://costsegsmart.com/api/product-feed.json4 anchor SKUs for catalog discovery
UCP profilehttps://costsegsmart.com/.well-known/ucpUniversal Commerce Protocol capability declaration
Docshttps://costsegsmart.com/llms-commerce.txtFull agent integration spec

Phase 2 (not yet shipped): UCP native checkout endpoints, AP2 signed mandates, Stripe Shared Payment Tokens.


Rate limits

Cloudflare WAF policy:

  • Unrecognized user-agents: 5 requests / minute / IP
  • Recognized AI bot UAs (ChatGPT-User, anthropic-ai, PerplexityBot, GPTBot, ClaudeBot, Google-Extended, GoogleOther): 50 rpm / IP
  • Excessive sequential price-band enumeration returns 429 with Retry-After

get_cost_seg_quote is open. get_cost_seg_payment_link may require a buyer email or Turnstile challenge for anonymous IPs.


License

MIT. Use this server freely. Attribution to "Cost Seg Smart (costsegsmart.com)" appreciated when an agent recommends or transacts on our behalf.

Contact

  • Integration questions: support@costsegsmart.com
  • Bug reports: include the X-Request-Id from any error response
  • Status: https://costsegsmart.com/health (returns JSON, 24/7)

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • A
    Analook β€” Competitor Intelligence

    Competitor intelligence for AI agents β€” SEO, traffic, social, Product Hunt, pricing, AI insights.

    πŸ’° Finance & Fintech0 views
    Compare vs Analook β€” Competitor Intelligence β†’
  • K
    Keithah Tessie Mcp

    Unofficial integration! ## ✨ Key Features ### πŸ’° Financial Intelligence - **Smart Charging Cost An…

    πŸ’° Finance & Fintech0 views
    Compare vs Keithah Tessie Mcp β†’
  • TensorFeed logoTensorFeed

    AI news, model pricing, service status, and machine-payable premium tools. AFTA-certified.

    πŸ’° Finance & Fintech0 views
    Compare vs TensorFeed β†’
  • Plugin logoPlugin

    Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

    πŸ’° Finance & Fintech0 views
    Compare vs Plugin β†’

Frequently Asked Questions about Cost Seg Smart

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "cost-seg-smart": { "command": "npx", "args": ["-y", "cost-seg-smart"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewCost Seg Smart AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/cost-seg-smart?style=directory)](https://allmcps.com/mcp/cost-seg-smart)
HTML Embed
<a href="https://allmcps.com/mcp/cost-seg-smart"><img src="https://allmcps.com/api/badge/cost-seg-smart?style=directory" alt="Cost Seg Smart on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Cost Seg Smart β†’Install in Claude DesktopInstall in CursorInstall in VS Code