list-all-tools-in-server
Lists all available tools on a specified MCP server by returning their names and descriptions, simplifying tool discovery and management on the MCP Hub.
Instructions
List ALL tools from a specific MCP server (returns name and description only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serverName | Yes | Name of the MCP server to list tools from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"serverName": {
"description": "Name of the MCP server to list tools from",
"type": "string"
}
},
"required": [
"serverName"
],
"type": "object"
}