-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmanifest.json
More file actions
105 lines (105 loc) · 2.65 KB
/
manifest.json
File metadata and controls
105 lines (105 loc) · 2.65 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"manifest_version": "0.3",
"name": "hackmd-mcp",
"display_name": "HackMD MCP",
"version": "1.5.7",
"description": "A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.",
"author": {
"name": "yuna0x0",
"email": "yuna@yuna0x0.com",
"url": "https://yuna0x0.com"
},
"homepage": "https://github.com/yuna0x0/hackmd-mcp",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js"],
"env": {
"HACKMD_API_TOKEN": "${user_config.hackmd_api_token}",
"HACKMD_API_URL": "${user_config.hackmd_api_url}"
}
}
},
"tools": [
{
"name": "get_user_info",
"description": "Get information about the authenticated user"
},
{
"name": "list_teams",
"description": "List all teams accessible to the user"
},
{
"name": "get_history",
"description": "Get user's reading history"
},
{
"name": "list_team_notes",
"description": "List all notes in a team"
},
{
"name": "create_team_note",
"description": "Create a new note in a team"
},
{
"name": "update_team_note",
"description": "Update an existing note in a team"
},
{
"name": "delete_team_note",
"description": "Delete a note in a team"
},
{
"name": "list_user_notes",
"description": "List all notes owned by the user"
},
{
"name": "get_note",
"description": "Get a note by its ID"
},
{
"name": "create_note",
"description": "Create a new note"
},
{
"name": "update_note",
"description": "Update an existing note"
},
{
"name": "delete_note",
"description": "Delete a note"
}
],
"compatibility": {
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
}
},
"user_config": {
"hackmd_api_token": {
"type": "string",
"title": "HackMD API Token",
"description": "Your HackMD API token for API authentication",
"required": true,
"sensitive": true
},
"hackmd_api_url": {
"type": "string",
"title": "HackMD API URL",
"description": "Optional HackMD API URL, defaults to https://api.hackmd.io/v1",
"required": false,
"sensitive": false,
"default": "https://api.hackmd.io/v1"
}
},
"keywords": ["api", "ai", "mcp", "hackmd", "llm", "mcp-server"],
"license": "MIT",
"privacy_policies": ["https://hackmd.io/s/privacy"],
"repository": {
"type": "git",
"url": "https://github.com/yuna0x0/hackmd-mcp.git"
}
}