Skip to main content
Glama
schema.json2.48 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Blah Configuration", "type": "object", "required": ["name", "version"], "properties": { "name": { "type": "string", "description": "Name of the blah manifest" }, "version": { "type": "string", "description": "Version of the manifest" }, "alias": { "type": "string", "description": "Alias used when an auton lists out tools" }, "description": { "type": "string", "description": "Description of the blah manifest" }, "env": { "type": "object", "description": "Environment variables that can be passed to tools and flows", "additionalProperties": { "type": "string" } }, "tools": { "type": "array", "items": { "type": "object", "required": ["name", "description"], "properties": { "name": { "type": "string", "description": "Name of the tool" }, "description": { "type": "string", "description": "Description of what the tool does" }, "alias": { "type": "string", "description": "Optional alias for the tool" }, "command": { "type": "string", "description": "Command to execute for local, inline, MCP, or SLOP tools" } } } }, "flows": { "type": "array", "items": { "type": "object", "required": ["name", "steps"], "properties": { "name": { "type": "string", "description": "Name of the flow" }, "steps": { "type": "array", "items": { "type": "object", "required": ["tool"], "properties": { "tool": { "type": "string", "description": "Name of the tool to execute" } } } } } } }, "prompts": { "type": "array", "description": "Reserved for future use" }, "resources": { "type": "array", "description": "Reserved for future use" }, "tags": { "type": "array", "items": { "type": "string" } }, "config": { "type": "object", "description": "Additional configuration options" } } }

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/thomasdavis/blah'

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