-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathserver.json
More file actions
64 lines (64 loc) · 1.6 KB
/
server.json
File metadata and controls
64 lines (64 loc) · 1.6 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
{
"$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_get_note",
"description": "Get note content by GUID"
},
{
"name": "evernote_update_note",
"description": "Update an existing note"
},
{
"name": "evernote_delete_note",
"description": "Delete a note"
},
{
"name": "evernote_search_notes",
"description": "Search notes with Evernote query syntax"
},
{
"name": "evernote_list_notebooks",
"description": "List all notebooks"
},
{
"name": "evernote_create_notebook",
"description": "Create a new notebook"
},
{
"name": "evernote_list_tags",
"description": "List all tags"
},
{
"name": "evernote_create_tag",
"description": "Create a new tag"
},
{
"name": "evernote_get_user_info",
"description": "Get current user information"
}
]
}