-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmithery.yaml
33 lines (32 loc) · 1.11 KB
/
smithery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- rabbitmqHost
- port
- username
- password
- useTls
properties:
rabbitmqHost:
type: string
description: The hostname of the RabbitMQ server.
port:
type: number
description: The port number to connect to RabbitMQ.
username:
type: string
description: Username for RabbitMQ authentication.
password:
type: string
description: Password for RabbitMQ authentication.
useTls:
type: boolean
description: Use TLS for the connection (amqps if true).
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({ command: 'mcp-server-rabbitmq', args: ['--rabbitmq-host', config.rabbitmqHost, '--port', config.port.toString(), '--username', config.username, '--password', config.password, '--use-tls', config.useTls.toString()] })