get_provider_operations
Every operation a provider exposes, across all of its OpenAPIs — method, path, operationId, summary, which API it belongs to, and whether it is deprecated. The shortcut for "what can I actually call here?", which otherwise means fetching and parsing every one of their specs. Where the provider publishes agentic-access, each operation also carries its action class and CONSEQUENCE (read vs something that moves money) — filter on those to find the safe surface before letting an agent loose on it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Substring match on summary, path, or operationId. | |
| api | No | Restrict to one API, by aid or api slug. | |
| page | No | ||
| path | No | Substring match on the operation path. | |
| slug | Yes | ||
| limit | No | ||
| method | No | Restrict to one HTTP method. | |
| context | No | Optional: why you are asking. One sentence — the task you are trying to complete, or what you expect to get back. Never included in the answer and never used to rank; it is read only when a result turns out to be wrong, which is when knowing the intent is what makes the report actionable. | |
| consequence | No | Agentic consequence, e.g. "read". Only matches operations with agentic-access profiled. | |
| action_class | No | Agentic action class, e.g. "connected". |