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

# List MCP tools

> The MCP server tool list as a plain GET; the answer is the JSON-RPC `tools/list` envelope with the tools under `result.tools`.


## OpenAPI

```yaml openapi.json get /v1/mcp/tools
openapi: 3.1.0
info:
  title: Ocean One API
  version: 2.1.0
servers:
  - url: https://api.plungeai.com
paths:
  /v1/mcp/tools:
    get:
      summary: List the platform-as-MCP-server tools (JSON-RPC tools/list, signed pass-through)
      security:
        - ozkBearer: []
      responses:
        "200":
          description: JSON-RPC tools/list result
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    properties:
                      tools:
                        type: array
                        items:
                          $ref: "#/components/schemas/McpProtocolTool"
components:
  schemas:
    McpProtocolTool:
      type: object
      description: Standard MCP tool descriptor (JSON-RPC tools/list result item).
      properties:
        name:
          type: string
        description:
          type: string
        inputSchema:
          type: object
          description: JSON Schema for the tool arguments
      required:
        - name
        - inputSchema
      additionalProperties: true
  securitySchemes:
    ozkBearer:
      type: http
      scheme: bearer
      description: "ozk_ platform API key (Authorization: Bearer ozk_…)"
```
