We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kocierik/mcp-nomad'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
startCommand:
type: stdio
configSchema:
type: object
required: []
properties:
nomadToken:
type: string
description: Authentication token for Nomad (required if ACLs are enabled)
default: ""
nomadAddress:
type: string
description: Nomad server address
default: "http://localhost:4646"
commandFunction: |
(config) => ({
command: "/mcp-nomad",
args: [],
env: {
NOMAD_TOKEN: config.nomadToken || "",
NOMAD_ADDR: config.nomadAddress || "http://localhost:4646",
TRANSPORT: "stdio"
}
})