Decision Tools
The Decision Support Network provides four ways to discover and use verified decision-support tools. Every interface calls the same canonical routing engine — results are consistent whether you're a person using the website, an AI agent calling the API, or a browser assistant using WebMCP.
Human Interface
Search, browse, filter, and visit any tool directly through this website.
Browser WebMCP
Three tools are registered on this page via document.modelContext.registerTool() for compatible AI browsers.
find_decision_support_toolFind relevant DSAs for a decision query. Input: query, geography?, category?, audience?, max_results?
get_decision_tool_detailsGet full details for a specific DSA by slug.
list_decision_support_categoriesList all categories with DSA counts.
REST API
Versioned JSON API at /api/v1/
Remote MCP
JSON-RPC 2.0 endpoint at POST /api/mcp
// Example: tools/call
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "find_decision_support_tool",
"arguments": {
"query": "I need grant readiness help",
"geography": "National"
}
}
}Supports: initialize, tools/list, tools/call