search-api-operations
Search for API operations across multiple OpenAPI specifications to enable efficient discovery and integration within LLM-powered IDE tools like Cursor.
Instructions
Search for operations across specifications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
specId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"type": "string"
},
"specId": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}