II.
ToolDescriptor JSON
Structured · livetool-descriptor:web-search
Web Search json
Inspect the normalized record payload exactly as the atlas UI reads it.
{
"id": "tool-descriptor:web-search",
"_kind": "ToolDescriptor",
"_file": "extensions/tool-descriptors/web-search.yaml",
"_cluster": "extensions",
"attributes": {
"schema": "{}",
"displayName": "Web Search",
"description": "Search the public web and return ranked results with snippets.\nAvailable in many coding agents (Claude Code WebSearch, OpenAI\nweb tool, etc.).\n",
"inputSchema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query string"
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
}
},
"blocked_domains": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"outputSchema": {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"snippet": {
"type": "string"
}
}
}
}
}
},
"mode": "normal",
"streamable": false
},
"outgoingEdges": [],
"incomingEdges": [
{
"from": "agent-runtime-impl:a5c.runtime@current",
"to": "tool-descriptor:web-search",
"kind": "bundles",
"attributes": {}
},
{
"from": "agent-runtime-impl:claude-code.runtime@1.x",
"to": "tool-descriptor:web-search",
"kind": "bundles",
"attributes": {}
},
{
"from": "agent-runtime-impl:cursor.runtime@current",
"to": "tool-descriptor:web-search",
"kind": "bundles",
"attributes": {}
},
{
"from": "agent-runtime-impl:gemini-cli.runtime@current",
"to": "tool-descriptor:web-search",
"kind": "bundles",
"attributes": {}
}
]
}