---
title: "Get Service Tools Api"
method: GET
path: "/api/servers/tools/{service_path}"
tags: ["Server Management"]
---

# Get Service Tools Api

`GET /api/servers/tools/{service_path}`

Get tool list for a service via JWT Bearer Token authentication (External API).

This endpoint provides the same functionality as GET /tools/{service_path}
but uses modern JWT Bearer token authentication.

**Authentication:** JWT Bearer token (via nginx X-User header)
**Authorization:** Requires valid JWT token from auth system

**Path Parameters:**
- `service_path` (required): Service path (e.g., /myservice or /all for all services)

**Response:**
Returns the list of tools available on the service, filtered by user permissions.

**Example:**
```bash
curl -X GET https://registry.example.com/api/servers/tools/myservice \
  -H "Authorization: Bearer $JWT_TOKEN"

# Get tools from all accessible services
curl -X GET https://registry.example.com/api/servers/tools/all \
  -H "Authorization: Bearer $JWT_TOKEN"
```

## Path parameters

- `service_path` string, required

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/ascending-llc/apis/mcp-gateway-registry.md) · [All operations](https://skmtc.net/ascending-llc/apis/mcp-gateway-registry/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ascending-llc/mcp-gateway-registry/versions/31381943e2e7/schema)
