get_mcp_server_details
Retrieve detailed information about a specific MCP server by providing its namespace and slug, enabling efficient server exploration and selection using the Glama MCP API.
Instructions
Get detailed information about a specific MCP server by namespace and slug
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | Yes | The namespace/organization of the MCP server (e.g., 'microsoft', 'openai') | |
slug | Yes | The slug/name of the MCP server (e.g., 'playwright-mcp', 'gpt-mcp') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"namespace": {
"description": "The namespace/organization of the MCP server (e.g., 'microsoft', 'openai')",
"type": "string"
},
"slug": {
"description": "The slug/name of the MCP server (e.g., 'playwright-mcp', 'gpt-mcp')",
"type": "string"
}
},
"required": [
"namespace",
"slug"
],
"type": "object"
}