-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathserver.json
More file actions
67 lines (67 loc) · 1.99 KB
/
Copy pathserver.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.comet-ml/opik-mcp",
"title": "Opik MCP Server",
"description": "Interact with Opik prompts, traces, datasets and metrics through the Model Context Protocol.",
"version": "2.0.1",
"websiteUrl": "https://comet-ml.github.io/opik-mcp/",
"repository": {
"source": "github",
"url": "https://github.com/comet-ml/opik-mcp"
},
"icons": [
{
"src": "https://raw.githubusercontent.com/comet-ml/opik-mcp/refs/heads/main/legacy/typescript/docs/assets/logo-light-mode.svg",
"mimeType": "image/svg+xml",
"sizes": [
"any"
],
"theme": "light"
},
{
"src": "https://raw.githubusercontent.com/comet-ml/opik-mcp/refs/heads/main/legacy/typescript/docs/assets/logo-dark-mode.svg",
"mimeType": "image/svg+xml",
"sizes": [
"any"
],
"theme": "dark"
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "opik-mcp",
"version": "2.0.1",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"runtimeArguments": [
{
"type": "named",
"name": "-y",
"description": "Automatically confirm npm prompts when installing."
}
],
"environmentVariables": [
{
"name": "OPIK_API_KEY",
"description": "API key from your Opik workspace for authenticating SDK calls.",
"isRequired": true,
"isSecret": true
},
{
"name": "OPIK_API_BASE_URL",
"description": "Override the API base URL when using a self-hosted Opik deployment.",
"placeholder": "http://localhost:5173/api"
},
{
"name": "OPIK_WORKSPACE_NAME",
"description": "Default workspace to scope prompt and trace operations.",
"placeholder": "my-workspace"
}
]
}
]
}