@andrewkimjoseph/celina 0.2.17 → 0.2.18
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 +14 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,10 +24,12 @@ npm: [@andrewkimjoseph/celina](https://www.npmjs.com/package/@andrewkimjoseph/ce
|
|
|
24
24
|
|
|
25
25
|
## Quick start
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Celina is not meant to be run manually in a terminal for normal use. Your MCP client (Cursor, Claude Desktop, LM Studio, etc.) spawns it as a child process and talks to it over stdio. Install the package, then add it to your MCP config (see [Cursor / Claude Desktop config](#cursor--claude-desktop-config)).
|
|
28
|
+
|
|
29
|
+
**From npm:**
|
|
28
30
|
|
|
29
31
|
```bash
|
|
30
|
-
|
|
32
|
+
npm i @andrewkimjoseph/celina
|
|
31
33
|
```
|
|
32
34
|
|
|
33
35
|
**From source** (development):
|
|
@@ -78,16 +80,14 @@ openssl rsa -pubout -in private.pem -out public.pem
|
|
|
78
80
|
|
|
79
81
|
### Claude Desktop — remote (free plan)
|
|
80
82
|
|
|
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):
|
|
83
|
+
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). Install it once (`npm i -g mcp-remote`), then:
|
|
82
84
|
|
|
83
85
|
```json
|
|
84
86
|
{
|
|
85
87
|
"mcpServers": {
|
|
86
88
|
"celina": {
|
|
87
|
-
"command": "
|
|
89
|
+
"command": "mcp-remote",
|
|
88
90
|
"args": [
|
|
89
|
-
"-y",
|
|
90
|
-
"mcp-remote",
|
|
91
91
|
"https://mcp.celina.andrewkimjoseph.com/mcp",
|
|
92
92
|
"--transport",
|
|
93
93
|
"http-only"
|
|
@@ -103,12 +103,14 @@ Fully quit and relaunch Claude Desktop after editing the config (closing the win
|
|
|
103
103
|
|
|
104
104
|
### Local stdio (npm)
|
|
105
105
|
|
|
106
|
+
After `npm i @andrewkimjoseph/celina`, point your MCP client at the installed entry file (use an absolute path):
|
|
107
|
+
|
|
106
108
|
```json
|
|
107
109
|
{
|
|
108
110
|
"mcpServers": {
|
|
109
111
|
"celina": {
|
|
110
|
-
"command": "
|
|
111
|
-
"args": ["
|
|
112
|
+
"command": "node",
|
|
113
|
+
"args": ["/absolute/path/to/node_modules/@andrewkimjoseph/celina/build/index.js"]
|
|
112
114
|
}
|
|
113
115
|
}
|
|
114
116
|
}
|
|
@@ -156,8 +158,8 @@ LM Studio can host MCP servers directly via `mcp.json` (same format as Cursor).
|
|
|
156
158
|
{
|
|
157
159
|
"mcpServers": {
|
|
158
160
|
"celina": {
|
|
159
|
-
"command": "
|
|
160
|
-
"args": ["
|
|
161
|
+
"command": "node",
|
|
162
|
+
"args": ["/absolute/path/to/node_modules/@andrewkimjoseph/celina/build/index.js"],
|
|
161
163
|
"env": {
|
|
162
164
|
"CELO_PRIVATE_KEY": "0x..."
|
|
163
165
|
}
|
|
@@ -204,10 +206,9 @@ schema: v1
|
|
|
204
206
|
mcpServers:
|
|
205
207
|
- name: celina
|
|
206
208
|
type: stdio
|
|
207
|
-
command:
|
|
209
|
+
command: node
|
|
208
210
|
args:
|
|
209
|
-
- "
|
|
210
|
-
- "@andrewkimjoseph/celina"
|
|
211
|
+
- "/absolute/path/to/node_modules/@andrewkimjoseph/celina/build/index.js"
|
|
211
212
|
env:
|
|
212
213
|
CELO_PRIVATE_KEY: "0x..."
|
|
213
214
|
```
|
package/package.json
CHANGED