We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ultrade-org/ultrade-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
build:
dockerBuildPath: .
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties:
ITEMS_PER_PAGE:
type: string
default: 10
description: Number of items per page for paginated responses
ULTRADE_API_URL:
type: string
default: https://api.ultrade.org
description: Ultrade API base URL
exampleConfig:
ITEMS_PER_PAGE: 10
ULTRADE_API_URL: https://api.ultrade.org
commandFunction:
|-
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
ITEMS_PER_PAGE: config.ITEMS_PER_PAGE,
ULTRADE_API_URL: config.ULTRADE_API_URL
}
})