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_tool

Find relevant DSAs for a decision query. Input: query, geography?, category?, audience?, max_results?

get_decision_tool_details

Get full details for a specific DSA by slug.

list_decision_support_categories

List all categories with DSA counts.

REST API

Versioned JSON API at /api/v1/

GET/api/v1/toolsList + filter tools
GET/api/v1/tools/:slugTool details
POST/api/v1/find-toolIntent-based routing
GET/api/v1/categoriesCategory list

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