@unclick/mcp-server 0.2.0 → 0.2.1
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/dist/bgg-tool.d.ts +6 -0
- package/dist/bgg-tool.d.ts.map +1 -0
- package/dist/bgg-tool.js +250 -0
- package/dist/bgg-tool.js.map +1 -0
- package/dist/cloudflare-worker.d.ts +12 -0
- package/dist/cloudflare-worker.d.ts.map +1 -0
- package/dist/cloudflare-worker.js +50 -0
- package/dist/cloudflare-worker.js.map +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +10 -1
- package/dist/server.js.map +1 -1
- package/dist/tool-wiring.d.ts +78 -0
- package/dist/tool-wiring.d.ts.map +1 -1
- package/dist/tool-wiring.js +65 -0
- package/dist/tool-wiring.js.map +1 -1
- package/logo.png +0 -0
- package/package.json +5 -2
- package/public/icon.png +0 -0
- package/public/icon.svg +15 -0
- package/server.json +18 -0
package/logo.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unclick/mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"mcpName": "io.github.malamutemayhem/unclick-mcp-server",
|
|
5
5
|
"description": "MCP server for the UnClick tool marketplace — lets AI agents discover and use every UnClick tool",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
16
|
-
"README.md"
|
|
16
|
+
"README.md",
|
|
17
|
+
"logo.png",
|
|
18
|
+
"public",
|
|
19
|
+
"server.json"
|
|
17
20
|
],
|
|
18
21
|
"scripts": {
|
|
19
22
|
"build": "tsc",
|
package/public/icon.png
ADDED
|
Binary file
|
package/public/icon.svg
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<!-- Dark rounded square background -->
|
|
3
|
+
<rect width="512" height="512" rx="61" fill="#0a0a0a"/>
|
|
4
|
+
<!-- White "U" lettermark — geometric, bold, well-centred -->
|
|
5
|
+
<text
|
|
6
|
+
x="256"
|
|
7
|
+
y="345"
|
|
8
|
+
font-family="Arial Black, Arial, Helvetica, sans-serif"
|
|
9
|
+
font-size="310"
|
|
10
|
+
font-weight="900"
|
|
11
|
+
text-anchor="middle"
|
|
12
|
+
fill="#ffffff"
|
|
13
|
+
letter-spacing="-8"
|
|
14
|
+
>U</text>
|
|
15
|
+
</svg>
|
package/server.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
|
3
|
+
"name": "io.github.malamutemayhem/unclick-mcp-server",
|
|
4
|
+
"title": "UnClick",
|
|
5
|
+
"description": "AI agent tool marketplace. 60+ tools for social, e-commerce, accounting, and messaging.",
|
|
6
|
+
"version": "0.2.1",
|
|
7
|
+
"icon": "public/icon.png",
|
|
8
|
+
"packages": [
|
|
9
|
+
{
|
|
10
|
+
"registryType": "npm",
|
|
11
|
+
"identifier": "@unclick/mcp-server",
|
|
12
|
+
"version": "0.2.1",
|
|
13
|
+
"transport": {
|
|
14
|
+
"type": "stdio"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|