@andrewkimjoseph/celina 0.2.11 → 0.2.12
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 +32 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ openssl rsa -pubout -in private.pem -out public.pem
|
|
|
61
61
|
|
|
62
62
|
## Cursor / Claude Desktop config
|
|
63
63
|
|
|
64
|
-
###
|
|
64
|
+
### Cursor — remote (recommended)
|
|
65
65
|
|
|
66
66
|
```json
|
|
67
67
|
{
|
|
@@ -76,6 +76,37 @@ openssl rsa -pubout -in private.pem -out public.pem
|
|
|
76
76
|
|
|
77
77
|
> Custom domains must be listed in `ALLOWED_HOSTS` on the server. Render's default hostname (`RENDER_EXTERNAL_HOSTNAME`) is always allowed automatically.
|
|
78
78
|
|
|
79
|
+
### Claude Desktop — remote (free plan)
|
|
80
|
+
|
|
81
|
+
Claude Desktop's `claude_desktop_config.json` only supports local stdio servers — it does **not** accept `"type": "streamable-http"` with a `"url"`. Free-plan users should bridge the hosted server with [`mcp-remote`](https://github.com/geelen/mcp-remote):
|
|
82
|
+
|
|
83
|
+
```json
|
|
84
|
+
{
|
|
85
|
+
"mcpServers": {
|
|
86
|
+
"celina": {
|
|
87
|
+
"command": "npx",
|
|
88
|
+
"args": [
|
|
89
|
+
"-y",
|
|
90
|
+
"mcp-remote",
|
|
91
|
+
"https://mcp.celina.andrewkimjoseph.com/mcp",
|
|
92
|
+
"--transport",
|
|
93
|
+
"http-only"
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Fully quit and relaunch Claude Desktop after editing the config (closing the window is not enough).
|
|
101
|
+
|
|
102
|
+
<p align="center">
|
|
103
|
+
<video src="https://github.com/andrewkimjoseph/celina/raw/main/assets/claude-desktop.mp4" controls width="720">
|
|
104
|
+
<a href="https://github.com/andrewkimjoseph/celina/raw/main/assets/claude-desktop.mp4">Watch the Claude Desktop setup demo</a>
|
|
105
|
+
</video>
|
|
106
|
+
</p>
|
|
107
|
+
|
|
108
|
+
> **Pro / Max / Team / Enterprise:** you can skip `mcp-remote` and add `https://mcp.celina.andrewkimjoseph.com/mcp` under **Settings → Integrations** instead.
|
|
109
|
+
|
|
79
110
|
### Local stdio (npm)
|
|
80
111
|
|
|
81
112
|
```json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrewkimjoseph/celina",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"description": "Celina — MCP server for Celo mainnet. Balances, transfers, and chain reads for LLM agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"build/",
|
|
15
15
|
"bin/",
|
|
16
|
-
"assets/",
|
|
16
|
+
"assets/logo.png",
|
|
17
17
|
"README.md",
|
|
18
18
|
"LICENSE"
|
|
19
19
|
],
|