Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mcpdev_inspector_list_tools | List all available tools from a target MCP server. Use this to discover what tools a target MCP server provides. Returns tool names, descriptions, and input schemas. Args:
Returns: JSON object with 'tools' array containing tool definitions. Examples:
|
| mcpdev_inspector_call_tool | Execute a tool on a target MCP server. Use this to invoke a specific tool on the target server with provided arguments. Args:
Returns: The tool's response content. Examples:
|
| mcpdev_inspector_list_resources | List all available resources from a target MCP server. Use this to discover what resources (data/content) a target MCP server exposes. Args:
Returns: JSON object with 'resources' array containing resource URIs and metadata. |
| mcpdev_inspector_read_resource | Read a specific resource from a target MCP server. Use this to fetch the content of a resource by its URI. Args:
Returns: The resource content (text or base64-encoded blob). |
| mcpdev_inspector_list_prompts | List all available prompts from a target MCP server. Use this to discover what prompt templates a target MCP server provides. Args:
Returns: JSON object with 'prompts' array containing prompt definitions. |
| mcpdev_inspector_get_prompt | Get a specific prompt from a target MCP server. Use this to retrieve and render a prompt template with provided arguments. Args:
Returns: The rendered prompt messages. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |