-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathserver.json
More file actions
84 lines (84 loc) · 2.36 KB
/
Copy pathserver.json
File metadata and controls
84 lines (84 loc) · 2.36 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.verygoodplugins/mcp-evernote",
"title": "MCP Evernote",
"description": "Evernote note management with OAuth and ENML conversion",
"version": "1.2.3",
"websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry",
"repository": {
"url": "https://github.com/verygoodplugins/mcp-evernote",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@verygoodplugins/mcp-evernote",
"version": "1.2.3",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "evernote_create_note",
"description": "Create a new note in Evernote"
},
{
"name": "evernote_search_notes",
"description": "Search notes with Evernote query syntax (paged; optional full content)"
},
{
"name": "evernote_get_note",
"description": "Get one note (full detail) or a batch of up to 25 by GUID"
},
{
"name": "evernote_update_note",
"description": "Update a note (full-field, or patch mode via replacements[])"
},
{
"name": "evernote_delete_note",
"description": "Delete a note"
},
{
"name": "evernote_list_notebooks",
"description": "List notebooks, or get one by name/guid"
},
{
"name": "evernote_create_notebook",
"description": "Create a new notebook"
},
{
"name": "evernote_update_notebook",
"description": "Update notebook name or stack"
},
{
"name": "evernote_list_tags",
"description": "List tags, or get one by name/guid"
},
{
"name": "evernote_create_tag",
"description": "Create a new tag"
},
{
"name": "evernote_update_tag",
"description": "Update tag name or parent"
},
{
"name": "evernote_get_resource",
"description": "Get an attachment by GUID, projected as text/binary/recognition/metadata"
},
{
"name": "evernote_add_resource_to_note",
"description": "Add a file/image attachment to a note"
},
{
"name": "evernote_polling",
"description": "Manage change polling (action: start/stop/poll/status)"
},
{
"name": "evernote_connection",
"description": "Connection and account (action: status/user/reconnect/revoke)"
}
]
}