Skip to main content
Glama

Flexible Key-Value Extracting MCP Server

smithery.yaml1.29 kB
# Smithery configuration file: https://smithery.ai/docs/build/project-config startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - openaiApiKey properties: openaiApiKey: type: string description: OpenAI API key for accessing the LLM model logFilePath: type: string description: Absolute path to log file when logging is enabled logEnabled: type: boolean description: Enable or disable logging commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => { const args = []; // Handle logging if (config.logEnabled) { args.push("--log=on"); // Use default logfile if not provided const logfile = config.logFilePath || "/logs/kv-extractor-mcp-server.log"; args.push(`--logfile=${logfile}`); } else { args.push("--log=off"); } return { command: "kv-extractor-mcp-server", args: args, env: { OPENAI_API_KEY: config.openaiApiKey } }; } exampleConfig: openaiApiKey: sk-xxxxxxxxxxxxxxxxxxxx logEnabled: false

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/KunihiroS/kv-extractor-mcp-server'

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