> ## Documentation Index
> Fetch the complete documentation index at: https://fastmcp-ts.docs.prefect.io/llms.txt
> Use this file to discover all available pages before exploring further.

# HttpMethod

```ts theme={null}
type HttpMethod = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "OPTIONS" | "HEAD" | "TRACE";
```

Defined in: [server/openapi/types.ts:10](https://github.com/PrefectHQ/fastmcp-ts/blob/main/src/server/openapi/types.ts#L10)

Shared types for the OpenAPI integration.

The intermediate representation (HTTPRoute and friends) is a direct port of
Python FastMCP's `fastmcp.utilities.openapi.models` so the two
implementations generate identical MCP components from the same spec. The
parity contract is pinned by the snapshots in `tests/fixtures/openapi/`.
