Skip to main content
Glama

MCP Development Server

by dillip285
from typing import Any, Dict class InputResponse: """Class representing a user's input response.""" def __init__(self, request_id: str, values: Dict[str, Any]): """Initialize an input response. Args: request_id: ID of the input request values: Dictionary of input values """ self.request_id = request_id self.values = values def validate(self) -> bool: """Validate the input response. Returns: bool: True if valid, False otherwise """ return True # TODO: Implement validation

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/dillip285/mcp-dev-server'

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