-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmithery.yaml
82 lines (78 loc) · 2.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Smithery configuration for ServeMyAPI
# Note: This MCP server is macOS-only due to its dependency on macOS Keychain
startCommand:
type: stdio
configSchema:
type: object
properties: {}
additionalProperties: false
commandFunction: |
function(config) {
// This is a macOS-only service that uses the macOS Keychain
// The container will start but will not function correctly on non-macOS systems
return {
command: "node",
args: ["dist/index.js"],
env: {
"NODE_ENV": "production"
}
};
}
tools:
store-api-key:
name: "store-api-key"
description: "Store an API key securely in the keychain"
parameters:
$schema: "http://json-schema.org/draft-07/schema#"
type: object
additionalProperties: false
properties:
name:
type: string
minLength: 1
description: "The name/identifier for the API key"
key:
type: string
minLength: 1
description: "The API key to store"
required: ["name", "key"]
get-api-key:
name: "get-api-key"
description: "Retrieve an API key from the keychain"
parameters:
$schema: "http://json-schema.org/draft-07/schema#"
type: object
additionalProperties: false
properties:
name:
type: string
minLength: 1
description: "The name/identifier of the API key to retrieve"
required: ["name"]
delete-api-key:
name: "delete-api-key"
description: "Delete an API key from the keychain"
parameters:
$schema: "http://json-schema.org/draft-07/schema#"
type: object
additionalProperties: false
properties:
name:
type: string
minLength: 1
description: "The name/identifier of the API key to delete"
required: ["name"]
list-api-keys:
name: "list-api-keys"
description: "List all stored API keys"
parameters:
$schema: "http://json-schema.org/draft-07/schema#"
type: object
additionalProperties: false
properties: {}
build:
dockerfile: Dockerfile
dockerBuildPath: "."
# This comment explains that the service is macOS-only
# While the Dockerfile and smithery.yaml enable deployment compatibility,
# the service depends on macOS Keychain and will not function on other platforms