Skip to main content
Glama

SavePropTax MCP サーバー

カリフォルニア州の固定資産税不服申立てのためのリモートMCPサーバー兼オープンHTTP API。

住宅が過大評価されていないか問い合わせることができます。直近の類似売買事例がより低い価値を裏付ける場合、カウンティ自身のProposition 8減額審査フォームを作成し、署名リンクを住宅所有者にメールで送信します。所有者が署名し、定額$29を支払います。確認は無料、キー不要で、税額を下げることしかできず、上げることは決してありません。

インストールするものは何もありません。サーバーはホスト型です:

https://saveproptax.com/mcp

ストリーミングHTTP、認証なし、ステートレス。

クライアントに追加する

Claude: 設定、コネクタ、カスタムコネクタの追加の順に進み、上記のURLを貼り付けます。

ChatGPT: 設定、コネクタ(またはアプリ)の順に進み、プランがカスタムコネクタに対応している場合は、URLでMCPサーバーを追加します。

Claude Code:

claude mcp add --transport http saveproptax https://saveproptax.com/mcp

任意のMCPクライアント: ストリーミングHTTPトランスポートをURLに向けます。トークンは不要です。

Related MCP server: MCP Real Estate Intelligence Server

ツール

ツール

引数

機能

check_property_tax_savings

address(必須)、unit

カリフォルニアの住宅1件を無料で確認します。ステータス、現在の査定額、直近の類似売買事例に基づく価値の見解、推定年間節約額を返します。条件を満たす結果にはcontinueTokenが含まれます。

start_filing

continueTokenownerNameownerPhoneownerEmail

カウンティのフォームを作成し、署名リンクを所有者にメールで送信します。リンクがクライアントに返されることはありません。

get_filing_status

docId

大まかなステータスのみ:awaiting_signatureawaiting_paymentfileddeliveredunknown。個人情報は含まれません。

すべてを形作るルール

エージェントが署名や金銭を扱うことは決してありません。 署名リンクは所有者の受信トレイに届きます。所有者はカウンティ自身のフォームを確認し、署名し、支払います。匿名の呼び出し元ができる最悪のことは、無料の確認を使い、実際の住宅所有者に自分の物件への正当なリンクを送ることだけです。

HTTP API

MCPを使わずに同じ機能を利用できます。キー不要です。

curl -s https://saveproptax.com/api/agent/check \
  -H 'Content-Type: application/json' \
  -d '{"address": "123 Main St, Walnut Creek"}'

条件を満たすレスポンス:

{
  "status": "qualifies",
  "message": "This property qualifies: recent comparable sales support a value of $915,000 against the $1,024,000 assessment, an estimated $1,204 per year in tax savings; filing costs a flat $29 and the owner signs and pays.",
  "property": { "address": "123 MAIN ST, WALNUT CREEK CA", "county": "Contra Costa" },
  "estimate": { "assessment": 1024000, "opinion": 915000, "estimatedAnnualSavings": 1204 },
  "filing": { "feeUsd": 29, "deadline": "November 30, 2026" },
  "continueToken": "eyJ...valid 24 hours",
  "cached": false,
  "checkedAt": "2026-08-19T18:00:00.000Z"
}

次に、トークンと所有者の詳細を提出準備に渡します:

curl -s https://saveproptax.com/api/agent/prepare \
  -H 'Content-Type: application/json' \
  -d '{
    "continueToken": "eyJ...",
    "ownerName": "Jane Homeowner",
    "ownerPhone": "925 555 0100",
    "ownerEmail": "jane@example.com"
  }'
{ "docId": "d0c1d2...", "status": "awaiting_signature",
  "statusUrl": "https://saveproptax.com/api/agent/status?doc=d0c1d2...",
  "ownerEmailSent": true }

ステータスエンドポイントをポーリングして進捗を確認します:

curl -s 'https://saveproptax.com/api/agent/status?doc=d0c1d2...'

処理すべきすべてのステータス

ステータス

意味

qualifies

類似売買事例が防御可能な低い価値を裏付けており、節約額が年間$500を超え、カウンティの受付期間が開いています。continueTokenを持つ唯一のステータスです。

fair_assessment

売買事例が今年の現在の査定額を下回る価値を裏付けていません。

not_enough_data

防御可能な申請のための直近の類似売買事例が少なすぎます。

not_residential

区画のカウンティ記録が住宅用ではありません。

window_closed

カウンティの受付期間が終了しました。filing.reopensが再開時期を示します。

county_not_served

まだ対応していないカリフォルニア州のカウンティです。

already_filed

この物件に対する減額審査請求が今年すでに提出されています。

address_not_found

市区町村を含めて再試行してください。

needs_more_info

メッセージに不足している内容(例:部屋番号)が示されます。

busy

高負荷時:新規確認は一時停止されますが、キャッシュ済みの回答は引き続き提供されます。しばらくして再試行してください。

すべてのmessageは、そのままユーザーに伝えられる一文の説明文です。

オプションのキー

curl -s https://saveproptax.com/api/agent/register \
  -H 'Content-Type: application/json' \
  -d '{"agentName": "MyAssistant", "contactEmail": "dev@example.com"}'

承認手順なしで即座にキーが返されます。x-agent-keyヘッダーとして送信すると、新規確認の上限が2倍になり、名前付きの帰属が付与されます。匿名での利用も問題なく機能します。登録は身元確認であり、許可ではありません。

レート制限

  • 住所ごとのキャッシュ、24時間。 繰り返しの確認は即座に完了し、コストはかからず、cached: trueとして返されます。キャッシュ済みの回答にレート制限はありません。

  • 1時間ごとの新規確認予算。 新規確認は実際の記録と売買データを購入するため、1時間ごとの共通プールを共有します。高負荷時、新規確認はbusyを返しますが、キャッシュ済みの回答は引き続き提供されます。パイプラインがより安価な評価方法に劣化することはなく、遅延するだけです。

  • 提出のゲーティング。 実際の確認からのトークンが必要で、所有者の受信トレイ1つにつき1日3件までの署名リンクに制限されています。

対象地域

アラメダ、コントラコスタ、ロサンゼルス、マリン、ナパ、プレイサー、リバーサイド、サクラメント、サンベニート、サンバーナーディーノ、サンフランシスコ、サンホアキン、サンマテオ、サンタクララ、サンタクルーズ、ソラノ、サッター、ヨロの各カウンティ。受付期間はカウンティごとに季節変動します。現在の締切はhttps://saveproptax.com/counties.htmlをご覧ください。

詳細

SavePropTaxは公的記録とカウンティ自身のフォームから減額審査請求を作成します。所有者が確認し署名します。当社は法律事務所ではなく、ここにあるものは法的助言や税務助言ではありません。減額はカウンティ査定官のみが決定します。

ライセンス

MIT。LICENSEをご覧ください。ライセンスはこのリポジトリの内容を対象とします。ホスト型サービスはhttps://saveproptax.com/legal.htmlの規約に従います。

ローカルでの実行(stdio)

ホスト型サーバーにはインストールは不要です。stdioのみのMCPクライアント向けに、このリポジトリには依存関係のないブリッジ(Node 18以上)が同梱されています:

{
  "mcpServers": {
    "saveproptax": {
      "command": "node",
      "args": ["bridge.js"]
    }
  }
}

またはDockerで:docker build -t saveproptax-mcp . && docker run -i saveproptax-mcp。イントロスペクションはローカルで応答され、ツール呼び出しはsaveproptax.com/mcpに転送されます。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    AI-powered property intelligence for instant zoning analysis, buildability assessments, ADU eligibility, flood risk, and development feasibility reports for any US address.
    5
    1
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Provides comprehensive real estate market intelligence, property valuation, and investment analysis for AI agents. Unifies data from multiple sources like Zillow, Redfin, and public records into a single MCP interface.
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Enables AI agents to look up county assessor public records for properties, check MLS discrepancies against public data, and discover new county assessor sources, all via a local MCP server for real-estate appraisal workflows.
    5
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Enables structured real estate workflows including property search, agent/client management, market intelligence, mortgage calculations, valuation, investment analysis, and document ingestion, with offline-first capabilities and optional live data integrations.
    AGPL 3.0

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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/atifnayeem-oss/saveproptax-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server