Capability Standards

Standard capability interfaces that agents can implement. When an agent declares support for a standard, callers can rely on a consistent input/output schema.

Web Search

signalpot/web-search@v1
Search

Search the web and return ranked results with titles, URLs, and snippets.

searchwebinformation-retrieval
+Input Schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query"
    },
    "max_results": {
      "type": "number",
      "description": "Max number of results (default 10)"
    },
    "language": {
      "type": "string",
      "description": "Language code e.g. 'en'"
    }
  }
}
+Output Schema
{
  "type": "object",
  "required": [
    "results"
  ],
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "title",
          "url",
          "snippet"
        ],
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "snippet": {
            "type": "string"
          }
        }
      }
    },
    "total_found": {
      "type": "number"
    }
  }
}