Read-only · search
Use this to find relevant authorized Meetly meetings by query.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Query over meeting titles, discovery previews, and transcripts. Previews may be generated and must not support substantive claims. |
What you get
results- Matching meetings you can open with the read tool.Includes: id, title, url.
Example
Find meetings about a pilot decision. Use an ID from the results to read a meeting.
Call search with:
{
"query": "What did we decide about the pilot?"
}Illustrative input, checked against this catalog at build time.
Full description from the catalog
Use this to find relevant authorized Meetly meetings by query. Searches titles, discovery previews, and available transcripts, including segment-only recordings; generated summaries are not required. Returns only source IDs, titles, and citation URLs. Discovery matches are not evidence: call fetch to verify against the transcript before making claims.
Input schema
{
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"description": "Query over meeting titles, discovery previews, and transcripts. Previews may be generated and must not support substantive claims."
}
},
"required": [
"query"
]
}Output schema
{
"type": "object",
"additionalProperties": false,
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"id",
"title",
"url"
]
}
}
},
"required": [
"results"
]
}Full tool definition and annotations
{
"name": "search",
"title": "Search Meetly meeting sources",
"description": "Use this to find relevant authorized Meetly meetings by query. Searches titles, discovery previews, and available transcripts, including segment-only recordings; generated summaries are not required. Returns only source IDs, titles, and citation URLs. Discovery matches are not evidence: call fetch to verify against the transcript before making claims.",
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false,
"idempotentHint": true
},
"securitySchemes": [
{
"type": "oauth2",
"scopes": [
"meetings:read"
]
}
],
"_meta": {
"securitySchemes": [
{
"type": "oauth2",
"scopes": [
"meetings:read"
]
}
],
"openai/toolInvocation/invoking": "Searching Meetly sources…",
"openai/toolInvocation/invoked": "Meetly sources ready"
},
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"description": "Query over meeting titles, discovery previews, and transcripts. Previews may be generated and must not support substantive claims."
}
},
"required": [
"query"
]
},
"outputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"id",
"title",
"url"
]
}
}
},
"required": [
"results"
]
}
}Server 0.8.0 · Source commit 13743ab0fd1289fa2dd1cfc2bf08ed34a9fb1040