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

# How can I view the details of a specific provider tool?

> Reference on how to isolate and fetch the configuration profile of a singular provider tool using its unique ID.

# Viewing Details of a Specific Provider Tool

## Using HasMCP UI

<img src="https://mintcdn.com/hasmcp/IeVTjQlEDEFCokWv/images/kb/provider-tool-details.png?fit=max&auto=format&n=IeVTjQlEDEFCokWv&q=85&s=43da8dd988af9cf0995b37748ec0cfde" alt="Provider Tool Details" width="2560" height="1440" data-path="images/kb/provider-tool-details.png" />

In the dashboard, locating specific tool details entails:

1. Opening the **Provider Details** page.
2. Under the Tools section, finding the tool in the list.
3. Clicking on the tool row or a "View" action to open its dedicated property pane showing its execution path and input schema.

## Using REST API

If you need the exhaustive JSON profile of an individual tool natively assigned to a provider, you will execute a `GET` request addressed directly to the tool's ID nested under the provider.

### The API Endpoint

**`GET /providers/{providerId}/tools/{id}`**

You must provide both identifiers:

* `{providerId}`: The 11-character hash of the parent Provider.
* `{id}`: The 11-character hash of the individual Tool.

### Example Request

```bash theme={null}
curl -X GET https://app.hasmcp.com/api/v1/providers/kSuB9Gf6aD4/tools/tOlM8Hr2zP1 \
 -H "Authorization: Bearer YOUR_TOKEN"
```

A successful request returns a `200 OK` response with a [`GetProviderToolResponse`](/api-reference/providers/tools/get-provider-tool) object. This schema exposes all defined prompt instructions, the specific execution URI segment, and HTTP method matching rules for this exact tool.
