We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/recraft-ai/mcp-recraft-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
startCommand:
type: stdio
configSchema:
type: object
required:
- RECRAFT_API_KEY
properties:
RECRAFT_API_KEY:
type: string
description: 'Your Recraft API key. Get one at https://www.recraft.ai/profile/api'
commandFunction:
|-
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
RECRAFT_API_KEY: config.RECRAFT_API_KEY,
RECRAFT_REMOTE_RESULTS_STORAGE: "1"
}
})