find-tools-in-server
Search for tools by name or description in an MCP server using regex patterns. Specify server name, pattern, and search scope for precise results.
Instructions
Find tools matching a pattern in a specific MCP server (returns name and description only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseSensitive | No | Whether the search should be case-sensitive | |
pattern | Yes | Regex pattern to search for in tool names and descriptions | |
searchIn | No | Where to search: in tool names, descriptions, or both | both |
serverName | Yes | Name of the MCP server to search tools in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"caseSensitive": {
"default": false,
"description": "Whether the search should be case-sensitive",
"type": "boolean"
},
"pattern": {
"description": "Regex pattern to search for in tool names and descriptions",
"type": "string"
},
"searchIn": {
"default": "both",
"description": "Where to search: in tool names, descriptions, or both",
"enum": [
"name",
"description",
"both"
],
"type": "string"
},
"serverName": {
"description": "Name of the MCP server to search tools in",
"type": "string"
}
},
"required": [
"serverName",
"pattern"
],
"type": "object"
}