mcp-discord/smithery.yaml

27 lines
746 B
YAML

# Smithery configuration file: https://smithery.ai/docs/build/project-config/smithery.yaml
version: 1
runtime: "container"
build:
dockerfile: "Dockerfile" # Path to your Dockerfile
dockerBuildPath: "." # Docker build context
dockerBuildArgs:
DISCORD_TOKEN: ${discordToken}
dockerBuildEnv:
DISCORD_TOKEN: ${discordToken}
dockerRunEnv:
DISCORD_TOKEN: ${discordToken}
startCommand:
type: http
configSchema:
type: object
required:
- discordToken
properties:
discordToken:
type: string
title: "Discord Bot Token"
description: "Discord bot token. Obtain this from the Discord Developer Portal."
exampleConfig:
discordToken: YOUR_DISCORD_BOT_TOKEN