-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
28 lines (28 loc) · 776 Bytes
/
smithery.yaml
File metadata and controls
28 lines (28 loc) · 776 Bytes
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
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
type: object
properties:
githubToken:
type: string
description: "GitHub personal access token for higher API rate limits (optional)"
producthuntToken:
type: string
description: "Product Hunt API token for deep mode search (optional)"
required: []
commandFunction: |-
(config) => {
const env = {};
if (config.githubToken) {
env.GITHUB_TOKEN = config.githubToken;
}
if (config.producthuntToken) {
env.PRODUCTHUNT_TOKEN = config.producthuntToken;
}
return {
command: "uvx",
args: ["idea-reality-mcp"],
env
};
}