smithery.yaml•889 B
runtime: "container"
build:
dockerfile: "Dockerfile" # Path to your Dockerfile
dockerBuildPath: "." # Docker build context
startCommand:
type: "stdio"
configSchema: # JSON Schema for configuration
type: "object"
properties:
bearerToken:
type: "string"
title: "Apex Bearer Token"
description: "Enter your Apex Bearer Token"
apiUrl:
type: "string"
title: "Apex API URL"
description: "Enter your Apex API URL."
default: "https://api.apexagents.ai"
required: ["bearerToken"]
exampleConfig:
bearerToken: "example123"
apiUrl: "https://api.apexagents.ai"
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
config => ({ command: 'node', args: ['dist/index.js', config.bearerToken, config.apiUrl] })