plopino 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/index.js +1 -1
- package/package.json +21 -3
- package/server.json +22 -0
package/README.md
CHANGED
|
@@ -27,7 +27,8 @@ link is public and permanent.
|
|
|
27
27
|
Set `PLOPINO_TOKEN` to publish to your account instead of anonymously. You get private
|
|
28
28
|
boards, updates that keep the same link, and you are not subject to the anonymous rate limit.
|
|
29
29
|
|
|
30
|
-
Create a token at **plopino.com/b**
|
|
30
|
+
Create a token at **plopino.com/b** — the panel hands you a ready-made command with the token
|
|
31
|
+
already in it (the server keeps an encrypted copy, so you can come back for it any time), then:
|
|
31
32
|
|
|
32
33
|
```bash
|
|
33
34
|
claude mcp add plopino --env PLOPINO_TOKEN=plp_xxx -- npx -y plopino
|
package/index.js
CHANGED
|
@@ -31,7 +31,7 @@ const INSTRUCTIONS =
|
|
|
31
31
|
+ 'save the file and upload it somewhere themselves. Publishing works with no account. Every '
|
|
32
32
|
+ 'call returns a permanent public URL that opens on any device — give that link to the user.';
|
|
33
33
|
|
|
34
|
-
const server = new McpServer({ name: 'plopino', version: '0.1.
|
|
34
|
+
const server = new McpServer({ name: 'plopino', version: '0.1.2' }, { instructions: INSTRUCTIONS });
|
|
35
35
|
|
|
36
36
|
// 工具描述是给**模型**看的,不是给人看的——要写清楚「什么时候该用」,
|
|
37
37
|
// 否则模型不知道有这个能力,集成了也不会被调用。
|
package/package.json
CHANGED
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plopino",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"mcpName": "io.github.plopino/plopino-mcp",
|
|
4
5
|
"description": "MCP server: publish an HTML page, a file, or a folder to Plopino and get a public URL.",
|
|
5
6
|
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"mcp-server",
|
|
10
|
+
"model-context-protocol",
|
|
11
|
+
"claude",
|
|
12
|
+
"claude-code",
|
|
13
|
+
"ai-agents",
|
|
14
|
+
"html",
|
|
15
|
+
"publish",
|
|
16
|
+
"share",
|
|
17
|
+
"static-hosting",
|
|
18
|
+
"url"
|
|
19
|
+
],
|
|
6
20
|
"bin": {
|
|
7
21
|
"plopino": "index.js"
|
|
8
22
|
},
|
|
9
23
|
"files": [
|
|
10
24
|
"index.js",
|
|
11
25
|
"upload.js",
|
|
26
|
+
"server.json",
|
|
12
27
|
"README.md",
|
|
13
28
|
"LICENSE"
|
|
14
29
|
],
|
|
@@ -18,9 +33,12 @@
|
|
|
18
33
|
"license": "MIT",
|
|
19
34
|
"repository": {
|
|
20
35
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/
|
|
22
|
-
|
|
36
|
+
"url": "https://github.com/plopino/plopino-mcp.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/plopino/plopino-mcp/issues"
|
|
23
40
|
},
|
|
41
|
+
"homepage": "https://plopino.com",
|
|
24
42
|
"dependencies": {
|
|
25
43
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
26
44
|
"zod": "^4.6.5"
|
package/server.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.plopino/plopino-mcp",
|
|
4
|
+
"title": "Plopino",
|
|
5
|
+
"description": "Drop in a page, get a link. Publish an HTML page, a file, or a folder and get a public URL — no account, no build, no config.",
|
|
6
|
+
"version": "0.1.2",
|
|
7
|
+
"websiteUrl": "https://plopino.com",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/plopino/plopino-mcp",
|
|
10
|
+
"source": "github"
|
|
11
|
+
},
|
|
12
|
+
"packages": [
|
|
13
|
+
{
|
|
14
|
+
"registryType": "npm",
|
|
15
|
+
"identifier": "plopino",
|
|
16
|
+
"version": "0.1.2",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|