-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathserver.json
More file actions
48 lines (48 loc) · 1.28 KB
/
server.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.storybookjs/addon-mcp",
"title": "Storybook MCP Addon",
"description": "Help agents automatically write and test stories for your UI components.",
"websiteUrl": "https://storybook.js.org/docs/ai/mcp/overview",
"icons": [
{
"src": "https://raw.githubusercontent.com/storybookjs/brand/main/icon/icon-storybook-default.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"],
"theme": "light"
},
{
"src": "https://raw.githubusercontent.com/storybookjs/brand/main/icon/icon-storybook-inverse.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"],
"theme": "dark"
}
],
"repository": {
"url": "https://github.com/storybookjs/mcp",
"source": "github",
"id": "1042284426",
"subfolder": "packages/addon-mcp"
},
"version": "0.4.1",
"packages": [
{
"registryType": "npm",
"identifier": "@storybook/addon-mcp",
"version": "0.4.1",
"transport": {
"type": "streamable-http",
"url": "http://localhost:{--port}/mcp"
},
"packageArguments": [
{
"type": "named",
"name": "--port",
"description": "Port of the Storybook dev server exposing the MCP endpoint.",
"default": "6006",
"format": "number"
}
]
}
]
}