Agentic AI Foundation · Example Payload

Agentic Ai Foundation Mcp Tool Example

Search the web for information on a given query and return the top results.

AI AgentsLinux FoundationOpen SourceStandardsMCPAgentic AIInteroperability

Agentic Ai Foundation Mcp Tool Example is an example object payload from Agentic AI Foundation, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptioninputSchemaannotations

Example Payload

agentic-ai-foundation-mcp-tool-example.json Raw ↑
{
  "name": "search_web",
  "description": "Search the web for information on a given query and return the top results.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "The search query string."
      },
      "max_results": {
        "type": "integer",
        "description": "Maximum number of results to return.",
        "default": 5
      }
    },
    "required": ["query"]
  },
  "annotations": {
    "readOnly": true,
    "destructive": false
  }
}