-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
52 lines (52 loc) · 1.68 KB
/
Copy pathserver.json
File metadata and controls
52 lines (52 loc) · 1.68 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
{
"$schema": "https://modelcontextprotocol.io/registry/server.schema.json",
"name": "agentclip",
"displayName": "AgentClip",
"description": "Capture your AI agent's QA runs as shareable clips. Returns a single URL with screenshots, captions, and a summary.",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://agentclip.dev",
"repository": {
"type": "git",
"url": "https://github.com/ericelizes1/agentclip-python"
},
"author": {
"name": "Eric Elizes",
"email": "eric@elizes.dev"
},
"categories": ["browser-automation", "qa-testing", "agents"],
"keywords": ["mcp", "model-context-protocol", "qa", "testing", "screenshots", "agents", "claude"],
"runtime": {
"type": "stdio",
"command": "uvx",
"args": ["agentclip-mcp"]
},
"tools": [
{
"name": "slideshow_create",
"description": "Start a new slideshow. Returns id, share_url, and a write_token used to mutate this slideshow."
},
{
"name": "slideshow_add_slide",
"description": "Append a screenshot and caption to an existing slideshow."
},
{
"name": "slideshow_update_slide",
"description": "Replace the image and/or caption of a slide already in the slideshow."
},
{
"name": "slideshow_set_summary",
"description": "Set the slideshow's TL;DR. Call once near the end of a run."
}
],
"configuration": {
"AGENTCLIP_BASE_URL": {
"description": "Base URL of the AgentClip backend. Defaults to https://agentclip.dev.",
"required": false
},
"AGENTCLIP_STATE_PATH": {
"description": "Path to the local write_token state file. Defaults to ~/.agentclip/state.json.",
"required": false
}
}
}