streamable-httpMITupdated 8d ago
A live Model Context Protocol server for Kolmo Construction โ Seattle residential & commercial contractor. No authentication required.
What can you do with kolmo mcp server?
Kolmo Construction MCP Server
A live Model Context Protocol server for Kolmo Construction โ Seattle residential & commercial contractor. No authentication required.
Endpoint: https://www.kolmo.io/mcp
Transport: Streamable HTTP
Discovery: https://www.kolmo.io/.well-known/mcp.json
Connect
# Claude Code
claude mcp add --transport http kolmo https://www.kolmo.io/mcp
// Claude Desktop โ claude_desktop_config.json
{
"mcpServers": {
"kolmo": {
"type": "http",
"url": "https://www.kolmo.io/mcp"
}
}
}
Tools (36)
| Tool | Description |
|---|---|
get_business_info |
Company info: contact, hours, service area, license, SEDBE & SCS certifications |
get_author_bio |
Biography, credentials, and recent articles for a Kolmo blog author (curated bios merged with DB-level enrichments; falls back to DB-only authors) |
search_content |
Search across services, projects, and blog posts with a single keyword query |
list_services |
Residential remodeling services โ keyword search and pagination |
get_service |
Full details for a service by slug |
list_commercial_services |
Commercial & public works services (office, retail, industrial, hospitality, public). Public category covers government contracts โ WA SEDBE #D700031098, SCS #7259, prevailing wage compliant, MRSC Small Works Roster eligible |
list_procurement_codes |
NAICS, NIGP, and UNSPSC codes for gov vendor portals (SAM.gov, WA WEBS, OpenGov, MRSC). Primary NAICS 236118 plus SEDBE/SCS/RRP certifications |
list_projects |
Completed projects with before/after photos โ search, category filter, pagination |
get_project |
Full project details including images and testimonial |
get_project_testimonials |
Customer testimonials tied to a specific project (by slug or keyword) |
list_blog_posts |
Published blog posts โ filterable by tag and author |
get_blog_post |
Full markdown content of a blog post by slug |
list_blog_tags_and_categories |
All tags and categories used across published posts, with counts (topic discovery) |
submit_contact_request |
Submit a quote request; dryRun: true to preview without submitting |
list_project_types |
All 8 supported calculator project types with required input fields |
get_material_options |
Valid material IDs for flooring, paint, decking, etc. |
get_estimate |
Itemized cost estimate with labor, materials, and timeline |
list_reviews |
Customer reviews from Google and on-site sources โ filterable by rating |
check_permit_requirements |
Permit requirements for construction projects in the Seattle area |
get_permit_rule_details |
Full permit rule records (location, trigger, cost, notes, official source URL) โ filter by jurisdiction or keyword |
match_contractor_to_permit |
Map a permit/project type to required contractor specialties + license verification |
estimate_permit_fee |
Numeric permit-fee breakdown for a jurisdiction + project type + valuation (UBC Table 1-A bracket schedule + plan-review/tech/state surcharges) |
resolve_permit_submittals |
Structured submittal-item set for a parcel + scope via the unified permit-engine pipeline (per-item triggers, source citations, filler actor, gap paths). Seattle is full SDCI fidelity; 9 other verified cities are wa-baseline-stub |
list_permit_jurisdictions |
All jurisdictions in the catalog (King/Pierce/Snohomish) with portal URLs, contacts, fee-schedule URLs, and code-cycle metadata |
lookup_parcel_by_address |
Address โ parcel: zoning, setbacks, overlays (shoreline / ECA / flood / historic), lot area, jurisdiction routing, prior permits โ every fact cited to the city/county source |
parse_project_description |
Natural-language project description โ structured projectType + areaSqft + heightClass + position + materials with confidence + clarifying question (Gemini 2.5 Pro) |
answer_permit_question |
Grounded permit Q&A for an address โ cited answer using authoritative rules + neighbor activity + city municipal code; never fabricates fees or thresholds |
get_neighbor_permit_activity |
Aggregate permit activity within ~1500 ft of a parcel over 24 months (anonymized โ no addresses); Seattle live, others "coming soon" |
get_permit_data_freshness |
Per-jurisdiction last-verified dates + weekly source-snapshot pipeline results (HTTP status, change-detection vs prior fetch) |
get_material_catalog |
Full material catalog with pricing across all project types |
get_weather_window |
Seattle weather suitability for exterior construction over the next 1โ14 days |
get_neighborhood_project_activity |
Completed Kolmo projects in a specific Seattle neighborhood |
check_service_area_coverage |
Yes / nearby / out-of-area verdict for a city, neighborhood, or ZIP |
get_project_roi |
Estimated ROI for remodeling projects based on Cost vs. Value data |
check_contractor_license_status |
Look up any WA contractor's license, bond, and insurance via L&I public data |
get_financing_options |
Financing options with estimated monthly payments for a given budget |
Supported Project Types
interior-painting ยท exterior-painting ยท flooring ยท deck ยท windows ยท siding ยท fence ยท landscaping
Example Usage
1. Call list_project_types to see required fields
2. Call get_material_options for valid material IDs
3. Call get_estimate with your project details
Sample estimate โ 400 sqft LVP flooring:
{
"projectType": "flooring",
"project": {
"rooms": [{ "id": "1", "name": "Living Room", "length": 20, "width": 20 }],
"flooringMaterial": "vinyl-plank-lvp",
"includesUnderlayment": true,
"includesRemoval": true,
"removalType": "carpet",
"includesBaseboard": false,
"includesSubfloorPrep": false,
"transitionCount": 2
}
}
Returns: total cost, material cost, labor cost, time estimate (days), itemized line items.
Service Area
Seattle, Bellevue, Kirkland, Redmond, Sammamish, Issaquah, Renton, Kent, Federal Way, Mercer Island โ King County, WA.
About Kolmo Construction
Licensed & bonded Seattle general contractor (WA License: KOLMOL*753JS, SEDBE #D700031098, SCS #7259). Kolmo LLC, established 2025. Rating: 5.0โ on Google.
- Website: kolmo.io
- Calculator: kolmo.io/calculator
- Phone: (206) 410-5100
Install
Add kolmo mcp server to your client. Pick the one you use.
claude mcp add --transport http kolmo-mcp-server https://www.kolmo.io/mcpcodex mcp add kolmo-mcp-server --url https://www.kolmo.io/mcp{
"mcpServers": {
"kolmo-mcp-server": {
"url": "https://www.kolmo.io/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"kolmo-mcp-server": {
"type": "http",
"url": "https://www.kolmo.io/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"kolmo-mcp-server": {
"url": "https://www.kolmo.io/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"kolmo-mcp-server": {
"serverUrl": "https://www.kolmo.io/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
36 tools
kolmo mcp server exposes 36 tools to a connected agent.
- get_business_info
- Company info: contact, hours, service area, license, SEDBE & SCS certifications
- get_author_bio
- Biography, credentials, and recent articles for a Kolmo blog author (curated bios merged with DB-level enrichments; falls back to DB-only authors)
- search_content
- Search across services, projects, and blog posts with a single keyword query
- list_services
- Residential remodeling services โ keyword `search` and pagination
- get_service
- Full details for a service by slug
- list_commercial_services
- Commercial & public works services (office, retail, industrial, hospitality, public). Public category covers government contracts โ WA SEDBE #D700031098, SCS #7259, prevailing wage compliant, MRSC Small Works Roster eligible
- list_procurement_codes
- NAICS, NIGP, and UNSPSC codes for gov vendor portals (SAM.gov, WA WEBS, OpenGov, MRSC). Primary NAICS 236118 plus SEDBE/SCS/RRP certifications
- list_projects
- Completed projects with before/after photos โ `search`, `category` filter, pagination
- get_project
- Full project details including images and testimonial
- get_project_testimonials
- Customer testimonials tied to a specific project (by slug or keyword)
- list_blog_posts
- Published blog posts โ filterable by `tag` and `author`
- get_blog_post
- Full markdown content of a blog post by slug
- list_blog_tags_and_categories
- All tags and categories used across published posts, with counts (topic discovery)
- submit_contact_request
- Submit a quote request; `dryRun: true` to preview without submitting
- list_project_types
- All 8 supported calculator project types with required input fields
- get_material_options
- Valid material IDs for flooring, paint, decking, etc.
- get_estimate
- Itemized cost estimate with labor, materials, and timeline
- list_reviews
- Customer reviews from Google and on-site sources โ filterable by rating
- check_permit_requirements
- Permit requirements for construction projects in the Seattle area
- get_permit_rule_details
- Full permit rule records (location, trigger, cost, notes, official source URL) โ filter by jurisdiction or keyword
- match_contractor_to_permit
- Map a permit/project type to required contractor specialties + license verification
- estimate_permit_fee
- Numeric permit-fee breakdown for a jurisdiction + project type + valuation (UBC Table 1-A bracket schedule + plan-review/tech/state surcharges)
- resolve_permit_submittals
- Structured submittal-item set for a parcel + scope via the unified permit-engine pipeline (per-item triggers, source citations, filler actor, gap paths). Seattle is full SDCI fidelity; 9 other verified cities are wa-baseline-stub
- list_permit_jurisdictions
- All jurisdictions in the catalog (King/Pierce/Snohomish) with portal URLs, contacts, fee-schedule URLs, and code-cycle metadata
- lookup_parcel_by_address
- Address โ parcel: zoning, setbacks, overlays (shoreline / ECA / flood / historic), lot area, jurisdiction routing, prior permits โ every fact cited to the city/county source
- parse_project_description
- Natural-language project description โ structured projectType + areaSqft + heightClass + position + materials with confidence + clarifying question (Gemini 2.5 Pro)
- answer_permit_question
- Grounded permit Q&A for an address โ cited answer using authoritative rules + neighbor activity + city municipal code; never fabricates fees or thresholds
- get_neighbor_permit_activity
- Aggregate permit activity within ~1500 ft of a parcel over 24 months (anonymized โ no addresses); Seattle live, others "coming soon"
- get_permit_data_freshness
- Per-jurisdiction last-verified dates + weekly source-snapshot pipeline results (HTTP status, change-detection vs prior fetch)
- get_material_catalog
- Full material catalog with pricing across all project types
- get_weather_window
- Seattle weather suitability for exterior construction over the next 1โ14 days
- get_neighborhood_project_activity
- Completed Kolmo projects in a specific Seattle neighborhood
- check_service_area_coverage
- Yes / nearby / out-of-area verdict for a city, neighborhood, or ZIP
- get_project_roi
- Estimated ROI for remodeling projects based on Cost vs. Value data
- check_contractor_license_status
- Look up any WA contractor's license, bond, and insurance via L&I public data
- get_financing_options
- Financing options with estimated monthly payments for a given budget
Score
83 / 100
Excellent
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 36 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.4.0Latest | Aug 31, 2026 |
| 1.0.11 | May 1, 2026 |
| 1.0.10 | Apr 30, 2026 |
| 1.0.9 | Apr 27, 2026 |
| 1.0.8 | Apr 27, 2026 |
| 1.0.7 | Apr 27, 2026 |
| 1.0.6 | Apr 22, 2026 |
| 1.0.2 | Mar 23, 2026 |
| 1.0.1 | Mar 23, 2026 |
| 1.0.0 | Mar 23, 2026 |