-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathserver.json
More file actions
96 lines (96 loc) · 2.79 KB
/
server.json
File metadata and controls
96 lines (96 loc) · 2.79 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.yuna0x0/hackmd-mcp",
"description": "A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.",
"title": "HackMD",
"repository": {
"url": "https://github.com/yuna0x0/hackmd-mcp",
"source": "github",
"id": "950658365"
},
"version": "1.5.7",
"icons": [
{
"src": "https://hackmd.io/logo.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "hackmd-mcp",
"version": "1.5.7",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "HACKMD_API_TOKEN",
"description": "Your HackMD API token for API authentication",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "HACKMD_API_URL",
"description": "Optional HackMD API URL, defaults to https://api.hackmd.io/v1",
"format": "string",
"isRequired": false,
"isSecret": false,
"default": "https://api.hackmd.io/v1"
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/yuna0x0/hackmd-mcp:1.5.7",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "HACKMD_API_TOKEN",
"description": "Your HackMD API token for API authentication",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "HACKMD_API_URL",
"description": "Optional HackMD API URL, defaults to https://api.hackmd.io/v1",
"format": "string",
"isRequired": false,
"isSecret": false,
"default": "https://api.hackmd.io/v1"
}
]
},
{
"registryType": "mcpb",
"identifier": "https://github.com/yuna0x0/hackmd-mcp/releases/download/v1.5.7/hackmd-mcp-1.5.7.mcpb",
"fileSha256": "dfa69444294d38467f6fbd2c36ac57a0850bde767b20cacaa5f9d8b2a4b88934",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "HACKMD_API_TOKEN",
"description": "Your HackMD API token for API authentication",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "HACKMD_API_URL",
"description": "Optional HackMD API URL, defaults to https://api.hackmd.io/v1",
"format": "string",
"isRequired": false,
"isSecret": false,
"default": "https://api.hackmd.io/v1"
}
]
}
]
}