MCPcopy Create free account
hub / github.com/ReAPI-com/mcp-openapi / SpecOperationEntry

Interface SpecOperationEntry

src/core/interfaces/ISpecService.ts:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 * Entry representing an OpenAPI operation
41 */
42export interface SpecOperationEntry {
43 /** The path of the operation */
44 path: string;
45 /** HTTP method (GET, POST, etc.) */
46 method: string;
47 /** Optional description of the operation */
48 description?: string;
49 /** Unique identifier for the operation */
50 operationId?: string;
51}
52
53/**
54 * Entry representing a schema in the OpenAPI spec

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected