II.
ToolDescriptor JSON
Structured · livetool-descriptor:mongo.find
MongoDB: Find json
Inspect the normalized record payload exactly as the atlas UI reads it.
{
"id": "tool-descriptor:mongo.find",
"_kind": "ToolDescriptor",
"_file": "extensions/tool-descriptors/mongodb-mcp-tools.yaml",
"_cluster": "extensions",
"attributes": {
"schema": "{}",
"displayName": "MongoDB: Find",
"description": "Run a find() query against a collection.",
"inputSchema": {
"type": "object",
"required": [
"database",
"collection"
],
"properties": {
"database": {
"type": "string"
},
"collection": {
"type": "string"
},
"filter": {
"type": "object"
},
"projection": {
"type": "object"
},
"limit": {
"type": "integer"
},
"sort": {
"type": "object"
}
}
},
"outputSchema": {
"type": "object",
"properties": {
"documents": {
"type": "array"
}
}
},
"mode": "normal",
"streamable": false,
"timeoutMs": 30000
},
"outgoingEdges": [
{
"from": "tool-descriptor:mongo.find",
"to": "tool-server:mcp-mongodb",
"kind": "contained_in_plugin",
"attributes": {}
}
],
"incomingEdges": [
{
"from": "tool-server:mcp-mongodb",
"to": "tool-descriptor:mongo.find",
"kind": "contains_tool_descriptor",
"attributes": {}
}
]
}