# Smithery.ai configuration
name: xano-mcp
version: 1.0.0
description: Model Context Protocol server for Xano database integration
build:
dockerfile: Dockerfile
startCommand:
type: stdio
configSchema:
type: object
properties:
xano_api_token:
type: string
description: Xano API token for authentication
debug:
type: boolean
description: Enable debug mode for verbose logging
default: false
required:
- xano_api_token
commandFunction: |-
(config) => ({
command: "python",
args: ["-m", "src.xano_mcp", "--token", config.xano_api_token, ...(config.debug ? ["--debug"] : [])],
env: {}
})