Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
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:

  • target (string): Target MCP server - command (e.g., 'node server.js') or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type (auto-detected if not specified)

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

Returns: JSON object with 'tools' array containing tool definitions.

Examples:

  • Local server: { target: "node dist/index.js", transport: "stdio" }

  • Remote SSE: { target: "https://mcp.example.com/sse", transport: "sse" }

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:

  • target (string): Target MCP server - command or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

  • tool_name (string): Name of the tool to call

  • tool_args (object): Arguments to pass to the tool

Returns: The tool's response content.

Examples:

  • { target: "node server.js", tool_name: "get_weather", tool_args: { city: "Tokyo" } }

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:

  • target (string): Target MCP server - command or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

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:

  • target (string): Target MCP server - command or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

  • uri (string): Resource URI to read

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:

  • target (string): Target MCP server - command or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

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:

  • target (string): Target MCP server - command or URL

  • transport ('stdio' | 'sse' | 'http'): Transport type

  • timeout_ms (number): Timeout in milliseconds (default: 60000)

  • prompt_name (string): Name of the prompt to get

  • prompt_args (object): Arguments to pass to the prompt template

Returns: The rendered prompt messages.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kongyo2/mcpdevmcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server