@objekt.sh/mcp-upload 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 +34 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @objekt.sh/mcp-upload
|
|
2
|
+
|
|
3
|
+
MCP server for uploading files to decentralised storage from Claude Desktop, Cursor, or any MCP client.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
Get a free API key at [objekt.sh/mcp](https://objekt.sh/mcp), then add to your MCP config:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"objekt": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["-y", "@objekt.sh/mcp-upload"],
|
|
15
|
+
"env": {
|
|
16
|
+
"OBJEKT_API_KEY": "objekt_mcp_..."
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Tools
|
|
24
|
+
|
|
25
|
+
| Tool | Description |
|
|
26
|
+
|------|-------------|
|
|
27
|
+
| `upload_file` | Upload by host path or inline content |
|
|
28
|
+
| `upload_from_sandbox` | Returns curl command for sandbox uploads |
|
|
29
|
+
| `get_file` | Get file metadata and permalink |
|
|
30
|
+
| `get_pricing` | Current storage tier pricing |
|
|
31
|
+
|
|
32
|
+
## Docs
|
|
33
|
+
|
|
34
|
+
[objekt.sh/mcp](https://objekt.sh/mcp) — setup, pricing, best practices.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objekt.sh/mcp-upload",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"mcpName": "sh.objekt/mcp-upload",
|
|
5
5
|
"description": "MCP server for uploading files to objekt.sh from Claude Desktop, Cursor, and other MCP clients.",
|
|
6
6
|
"repository": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"mcp-upload": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
|
-
"dist"
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
16
17
|
],
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@modelcontextprotocol/sdk": "^1.29.0",
|