Saveproptax
SavePropTax MCP server
캘리포니아 재산세 이의 신청을 위한 원격 MCP 서버이자 공개 HTTP API입니다.
주택이 과대 평가되었는지 물어보세요. 최근 유사 매매 사례가 더 낮은 가치를 뒷받침한다면, 카운티 자체의 Proposition 8 가치 하락 검토 양식을 준비하고 서명 링크를 주택 소유자에게 이메일로 보냅니다. 소유자는 서명하고 정액 $29를 지불합니다. 확인은 무료이고 키가 필요 없으며, 세금 고지서를 낮출 수만 있고 절대 올리지 않습니다.
설치할 것이 없습니다. 서버는 다음에서 호스팅됩니다:
https://saveproptax.com/mcpStreamable HTTP, 인증 없음, 상태 비저장.
클라이언트에 추가
Claude: 설정, 그다음 커넥터, 그다음 사용자 지정 커넥터 추가를 선택하고 위의 URL을 붙여넣으세요.
ChatGPT: 설정, 그다음 커넥터(또는 앱), 그다음 URL로 MCP 서버 추가를 선택하세요. 단, 요금제에서 사용자 지정 커넥터를 지원하는 경우에 한합니다.
Claude Code:
claude mcp add --transport http saveproptax https://saveproptax.com/mcp모든 MCP 클라이언트: streamable-HTTP 전송을 URL에 지정하세요. 토큰이 필요 없습니다.
Related MCP server: MCP Real Estate Intelligence Server
도구
도구 | 인자 | 설명 |
|
| 캘리포니아 주택 하나를 무료로 확인합니다. 상태, 현재 평가액, 최근 유사 매매 사례에 기반한 가치 의견, 예상 연간 절감액을 반환합니다. 자격이 되는 결과에는 |
|
| 카운티 양식을 준비하고 서명 링크를 소유자에게 이메일로 보냅니다. 링크는 클라이언트에 절대 반환되지 않습니다. |
|
| 대략적인 상태만 반환합니다: |
모든 것을 결정짓는 규칙
에이전트는 서명이나 돈을 절대 처리하지 않습니다. 서명 링크는 소유자의 받은 편지함으로 전달됩니다. 소유자는 카운티 자체 양식을 검토하고 서명한 뒤 결제합니다. 익명 호출자가 할 수 있는 최악의 행동은 무료 확인을 한 번 사용하고 실제 주택 소유자에게 자신의 부동산에 대한 합법적인 링크를 보내는 것뿐입니다.
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...'처리해야 할 모든 상태
상태 | 의미 |
| 유사 매매 사례가 방어 가능한 더 낮은 가치를 뒷받침하고, 연간 절감액이 $500를 초과하며, 카운티 신청 기간이 열려 있습니다. |
| 올해 매매 사례가 현재 평가액보다 낮은 가치를 뒷받침하지 않습니다. |
| 방어 가능한 신청을 위한 밀접하게 일치하는 최근 매매 사례가 너무 적습니다. |
| 필지의 카운티 기록이 주거용이 아닙니다. |
| 카운티의 검토 기간이 종료되었습니다. |
| 아직 지원되지 않는 캘리포니아 카운티입니다. |
| 올해 이 부동산에 대한 검토 요청이 이미 제출되었습니다. |
| 시 이름을 포함하여 다시 시도하세요. |
| 메시지에 누락된 항목(예: 유닛 번호)이 표시됩니다. |
| 부하가 높음: 새 확인이 잠시 중단되며 캐시된 응답은 계속 제공됩니다. 잠시 후 다시 시도하세요. |
모든 message는 사용자에게 그대로 전달할 수 있는 한 문장 설명입니다.
선택적 키
curl -s https://saveproptax.com/api/agent/register \
-H 'Content-Type: application/json' \
-d '{"agentName": "MyAssistant", "contactEmail": "dev@example.com"}'승인 절차 없이 즉시 키를 반환합니다. x-agent-key 헤더로 보내면 새 확인 여유 용량이 두 배가 되고 이름 있는 귀속이 제공됩니다. 익명 사용도 문제없습니다. 등록은 신원 확인이지 권한 부여가 아닙니다.
속도 제한
주소별 캐시, 24시간. 반복 확인은 즉시 처리되며 비용이 들지 않고
cached: true로 표시되어 반환됩니다. 캐시된 응답에는 속도 제한이 적용되지 않습니다.시간당 새 확인 예산. 새 확인은 실제 기록과 매매 데이터를 구매하므로 시간당 공유 풀을 사용합니다. 부하가 걸리면 새 확인은
busy로 응답하고 캐시된 응답은 계속 제공됩니다. 파이프라인은 더 저렴한 평가 방법으로 절대 저하되지 않으며 지연될 뿐입니다.준비 게이팅. 실제 확인에서 얻은 토큰이 필요하며, 소유자 받은 편지함당 하루에 서명 링크 3개로 제한됩니다.
지원 지역
Alameda, Contra Costa, Los Angeles, Marin, Napa, Placer, Riverside, Sacramento, San Benito, San Bernardino, San Francisco, San Joaquin, San Mateo, Santa Clara, Santa Cruz, Solano, Sutter, Yolo 카운티. 신청 기간은 카운티별로 계절에 따라 다릅니다. 현재 마감일은 https://saveproptax.com/counties.html에서 확인하세요.
추가 정보
OpenAPI: https://saveproptax.com/openapi.json
llms.txt: https://saveproptax.com/llms.txt
레지스트리 메타데이터:
server.json파트너십 및 대량 이용 문의: support@saveproptax.com
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로 전달됩니다.
Maintenance
Related MCP Servers
- AlicenseAqualityDmaintenanceAI-powered property intelligence for instant zoning analysis, buildability assessments, ADU eligibility, flood risk, and development feasibility reports for any US address.51MIT
- Alicense-qualityBmaintenanceProvides 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
- Alicense-qualityAmaintenanceEnables 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.5MIT
- Alicense-qualityBmaintenanceEnables 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
Related MCP Connectors
AI transaction coordinator + legal-matters platform for real estate and law firms.
Zillow MCP for AI agents: property data, Zestimates & listings — 300+ fields per home. Free tier.
One-call installer quote review plus energy incentives, estimates, scores, and routing for agents.
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/atifnayeem-oss/saveproptax-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server