-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsmithery.yaml
56 lines (53 loc) · 1.57 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
name: "@TheSethRose/mcp-server-starter"
description: "A TypeScript-based Model Context Protocol (MCP) server template"
version: "0.1.0"
startCommand:
type: stdio
configSchema:
type: object
title: "MCP Server Configuration"
description: "Configuration options for the MCP server"
properties:
calculator:
type: object
title: "Calculator Tool"
description: "Configuration for the calculator tool"
properties:
enabled:
type: boolean
default: true
description: "Enable/disable the calculator tool"
restApi:
type: object
title: "REST API Tool"
description: "Configuration for the REST API tool"
properties:
enabled:
type: boolean
default: true
description: "Enable/disable the REST API tool"
maxRetries:
type: integer
default: 3
minimum: 1
maximum: 5
description: "Maximum number of retries for API calls"
required: []
commandFunction: |-
(config) => ({
command: 'node',
args: ['build/index.js'],
env: {
NODE_ENV: 'production',
CALCULATOR_ENABLED: config.calculator?.enabled?.toString() || 'true',
REST_API_ENABLED: config.restApi?.enabled?.toString() || 'true',
REST_API_MAX_RETRIES: config.restApi?.maxRetries?.toString() || '3'
}
})
clients:
- claude
- cursor
- windsurf
- cline
- typescript