federal-opportunities
Federal construction & renovation contract opportunities from SAM.gov, by state, NAICS, or keyword.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"federal-opportunities": {
"url": "https://mcp.renovationroute.com/mcp"
}
}
}Remote endpoints
https://mcp.renovationroute.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (4)
🟢search_opportunities(state, naics, keyword, tier, limit)
Search active federal construction and renovation contract opportunities from SAM.gov. Filter by US state, NAICS code, keyword, or contract value tier. Returns up to 50 results ordered by most recently published. This is a per-query search, not a bulk export.
Input Schema
{
"type": "object",
"properties": {
"state": {
"description": "2-letter US state code, e.g. \"VA\", \"TX\", \"MI\"",
"type": "string",
"minLength": 2,
"maxLength": 2
},
"naics": {
"description": "NAICS code, e.g. \"238220\" for plumbing",
"type": "string",
"maxLength": 20
},
"keyword": {
"description": "Keyword or phrase to search in title and description, e.g. \"HVAC\", \"roofing\", \"design-build\"",
"type": "string",
"maxLength": 200
},
"tier": {
"description": "Contract value tier: micro (<$50k), small ($50k-$250k), mid ($250k-$1M), large ($1M-$10M), major (>$10M)",
"type": "string",
"enum": [
"micro",
"small",
"mid",
"large",
"major"
]
},
"limit": {
"default": 25,
"description": "Number of results to return (max 50)",
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_opportunity(id)
Get details for a specific federal opportunity by its SAM.gov notice ID: scope summary, deadline, location, agency, NAICS, set-aside, and value. Incumbent contractor, past-offer counts, contract ceiling, and win-probability scoring require a RenovationRoute account.
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100,
"description": "SAM.gov external notice ID (e.g. \"508-26-152\") or RenovationRoute UUID"
}
},
"required": [
"id"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_stats
Get a real-time snapshot of active federal construction opportunities tracked by RenovationRoute. Returns total count, top states by volume, and breakdown by contract value tier.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢list_states
List the US states with the most active federal construction opportunities on RenovationRoute, ranked by volume, with the count per state. Returns the top states, not an exhaustive list of all 50.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence