-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 2.03 KB
/
Copy pathmanifest.json
File metadata and controls
44 lines (44 loc) · 2.03 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
{
"manifest_version": "0.3",
"name": "paste",
"display_name": "Paste",
"version": "0.1.3",
"description": "Give Claude access to your Mac clipboard history and pinboards from Paste.",
"long_description": "Paste connects your Mac's clipboard history and pinboards to Claude through MCP. Ask Claude to search what you copied, pull a saved item into context, save new items, and organize pinboards — all running locally on your Mac. Requires the Paste app with MCP enabled (Settings → MCP & AI Tools); the first time Claude uses Paste you approve access.",
"author": {
"name": "Paste Team ApS",
"url": "https://pasteapp.io"
},
"homepage": "https://pasteapp.io/mcp",
"documentation": "https://pasteapp.io/help/paste-mcp",
"support": "https://github.com/pasteapp/paste-mcp/issues",
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "server/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/server/index.js"]
}
},
"tools": [
{ "name": "search", "description": "Search your Paste clipboard history and pinboards." },
{ "name": "read_item", "description": "Read the full content of a saved item by id." },
{ "name": "create_item", "description": "Save a new item to Paste." },
{ "name": "update_item", "description": "Update the content of a saved item." },
{ "name": "delete_item", "description": "Delete a saved item." },
{ "name": "list_pinboards", "description": "List your pinboards." },
{ "name": "create_pinboard", "description": "Create a new pinboard." },
{ "name": "rename_pinboard", "description": "Rename a pinboard." },
{ "name": "delete_pinboard", "description": "Delete a pinboard." },
{ "name": "add_item_to_pinboard", "description": "Add an item to a pinboard." },
{ "name": "remove_item_from_pinboard", "description": "Remove an item from a pinboard." }
],
"privacy_policies": ["https://pasteapp.io/privacy"],
"compatibility": {
"platforms": ["darwin"],
"runtimes": {
"node": ">=18.0.0"
}
}
}