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

# Get User MCP Server Tools

> Returns available tool options for a user MCP server.

Returns tool options for a specific user MCP server.

## Usage

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://app.splox.io/api/v1/user-mcp-servers/YOUR_MCP_SERVER_ID/tools" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```python Python theme={null}
  from splox import SploxClient

  client = SploxClient(api_key="YOUR_API_KEY")
  resp = client.mcp.get_server_tools("YOUR_MCP_SERVER_ID")
  for tool in resp.options:
      print(tool.value)
  ```

  ```typescript Node.js theme={null}
  import Splox from "splox";

  const client = new Splox("YOUR_API_KEY");
  const resp = await client.mcp.getServerTools("YOUR_MCP_SERVER_ID");
  for (const tool of resp.options) {
    console.log(tool.value);
  }
  ```

  ```go Go theme={null}
  resp, err := client.MCP.GetServerTools(ctx, "YOUR_MCP_SERVER_ID")
  if err != nil {
      panic(err)
  }
  for _, tool := range resp.Options {
      fmt.Println(tool.Value)
  }
  ```
</CodeGroup>


## OpenAPI

````yaml GET /user-mcp-servers/{id}/tools
openapi: 3.1.0
info:
  title: Splox API
  description: >-
    Run workflows, manage chats, receive events, and monitor execution via the
    Splox API
  version: 1.0.0
  contact:
    name: Splox Support
    email: support@splox.io
    url: https://community.splox.io
servers:
  - url: https://app.splox.io/api/v1
    description: Production API
security: []
tags:
  - name: MCP
    description: Discover MCP servers, manage connections, and execute MCP tools
  - name: Workflows
    description: List, get, and inspect workflows, versions, and nodes
  - name: Workflow Requests
    description: Run workflows, monitor execution, and retrieve results
  - name: Events
    description: Receive external events via Event Hub webhooks
  - name: Chats
    description: Manage chat sessions for workflow interactions
paths:
  /user-mcp-servers/{id}/tools:
    get:
      tags:
        - MCP
      summary: Get User MCP Server Tools
      description: Returns available tool options for a user MCP server.
      operationId: getUserMCPServerTools
      parameters:
        - name: id
          in: path
          required: true
          description: User MCP server ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Tool options retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  options:
                    type: array
                    items:
                      type: object
                      properties:
                        label:
                          type: string
                        value:
                          type: string
                  total:
                    type: integer
                  limit:
                    type: integer
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token generated from your Splox account settings. Create tokens at
        https://app.splox.io/account?tab=settings

````