@adorbistech/mcp-server 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +86 -61
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -9,6 +9,7 @@ Use Adorbis AI from Claude Code, Cursor, Cline, and any MCP-compatible tool.
9
9
 
10
10
  [![npm version](https://img.shields.io/npm/v/@adorbistech/mcp-server?color=1e9ad6&label=npm)](https://www.npmjs.com/package/@adorbistech/mcp-server)
11
11
  [![license](https://img.shields.io/npm/l/@adorbistech/mcp-server?color=d2bbff)](LICENSE)
12
+ [![node](https://img.shields.io/node/v/@adorbistech/mcp-server?color=4be257)](https://nodejs.org)
12
13
 
13
14
  [Get a free API key](https://ai.adorbistech.com) · [Documentation](https://ai.adorbistech.com/docs) · [Dashboard](https://ai.adorbistech.com/dashboard)
14
15
 
@@ -16,26 +17,31 @@ Use Adorbis AI from Claude Code, Cursor, Cline, and any MCP-compatible tool.
16
17
 
17
18
  ---
18
19
 
19
- ## Quick Install
20
+ ## Install
20
21
 
21
- ### Claude Code
22
+ ### Option 1 — Clone and run locally (recommended, works on all platforms)
22
23
 
23
24
  ```bash
24
- claude mcp add adorbis -- npx -y @adorbistech/mcp-server
25
+ git clone https://github.com/adorbistech/adorbis-mcp
26
+ cd adorbis-mcp
27
+ npm install
28
+ npm run build
25
29
  ```
26
30
 
27
- Then set your API key:
28
- ```bash
29
- claude mcp add adorbis -e ADORBIS_API_KEY=your_key_here -- npx -y @adorbistech/mcp-server
30
- ```
31
+ Then point your tool to `node /path/to/adorbis-mcp/dist/index.js`.
32
+
33
+ ---
34
+
35
+ ### Claude Code
36
+
37
+ Add to `~/.claude.json`:
31
38
 
32
- Or add to `~/.claude/settings.json`:
33
39
  ```json
34
40
  {
35
41
  "mcpServers": {
36
42
  "adorbis": {
37
- "command": "npx",
38
- "args": ["-y", "@adorbistech/mcp-server"],
43
+ "command": "node",
44
+ "args": ["/path/to/adorbis-mcp/dist/index.js"],
39
45
  "env": {
40
46
  "ADORBIS_API_KEY": "your_key_here"
41
47
  }
@@ -44,17 +50,28 @@ Or add to `~/.claude/settings.json`:
44
50
  }
45
51
  ```
46
52
 
53
+ **Windows path example:**
54
+ ```json
55
+ "args": ["D:\\Ai-Adorbis\\MCP\\dist\\index.js"]
56
+ ```
57
+
58
+ **Mac/Linux path example:**
59
+ ```json
60
+ "args": ["/home/user/adorbis-mcp/dist/index.js"]
61
+ ```
62
+
47
63
  ---
48
64
 
49
65
  ### Cursor
50
66
 
51
- Add to Cursor MCP settings (`~/.cursor/mcp.json`):
67
+ Add to `~/.cursor/mcp.json`:
68
+
52
69
  ```json
53
70
  {
54
71
  "mcpServers": {
55
72
  "adorbis": {
56
- "command": "npx",
57
- "args": ["-y", "@adorbistech/mcp-server"],
73
+ "command": "node",
74
+ "args": ["/path/to/adorbis-mcp/dist/index.js"],
58
75
  "env": {
59
76
  "ADORBIS_API_KEY": "your_key_here"
60
77
  }
@@ -67,16 +84,15 @@ Add to Cursor MCP settings (`~/.cursor/mcp.json`):
67
84
 
68
85
  ### Cline (VS Code)
69
86
 
70
- Add to `.vscode/settings.json` or Cline MCP settings:
87
+ Add to Cline MCP settings:
88
+
71
89
  ```json
72
90
  {
73
- "cline.mcpServers": {
74
- "adorbis": {
75
- "command": "npx",
76
- "args": ["-y", "@adorbistech/mcp-server"],
77
- "env": {
78
- "ADORBIS_API_KEY": "your_key_here"
79
- }
91
+ "adorbis": {
92
+ "command": "node",
93
+ "args": ["/path/to/adorbis-mcp/dist/index.js"],
94
+ "env": {
95
+ "ADORBIS_API_KEY": "your_key_here"
80
96
  }
81
97
  }
82
98
  }
@@ -84,63 +100,55 @@ Add to `.vscode/settings.json` or Cline MCP settings:
84
100
 
85
101
  ---
86
102
 
87
- ### Auto-configure with CLI
103
+ ### Option 2 — npx (Mac/Linux only)
88
104
 
89
- Use `adorbis-init` to configure everything automatically:
90
105
  ```bash
91
- npx adorbis-init --mcps
106
+ # Mac/Linux
107
+ ADORBIS_API_KEY=your_key npx @adorbistech/mcp-server
92
108
  ```
93
109
 
94
- ---
95
-
96
- ## Available Tools
110
+ > **Note:** `npx` install is not recommended on Windows due to path resolution issues. Use the clone method above.
97
111
 
98
- Once connected, your AI assistant has access to these tools:
112
+ ---
99
113
 
100
- ### `adorbis_chat`
101
- General-purpose AI chat. Auto-routes to the best model for your task.
114
+ ### Auto-configure with CLI
102
115
 
103
- ```
104
- Ask Adorbis: What is the difference between TCP and UDP?
116
+ ```bash
117
+ npx adorbis-init --mcps
105
118
  ```
106
119
 
107
- ### `adorbis_code`
108
- Code generation, debugging, review, and explanation. Routes to the best coding model automatically.
120
+ Automatically writes the correct MCP config for every tool you have configured.
109
121
 
110
- ```
111
- Use adorbis_code to write a TypeScript function that debounces API calls
112
- ```
113
-
114
- ### `adorbis_reason`
115
- Complex reasoning — math, logic, multi-step analysis. Routes to frontier reasoning models.
122
+ ---
116
123
 
117
- ```
118
- Use adorbis_reason to analyze the time complexity of this algorithm
119
- ```
124
+ ## Available Tools
120
125
 
121
- ### `adorbis_write`
122
- Long-form writing — documentation, articles, emails, reports.
126
+ Once connected, your AI assistant has access to 7 tools:
123
127
 
124
- ```
125
- Use adorbis_write to create a README for my project
126
- ```
128
+ | Tool | Description |
129
+ |---|---|
130
+ | `adorbis_chat` | General AI chat — auto-routes to best model |
131
+ | `adorbis_code` | Code generation, debugging, review |
132
+ | `adorbis_reason` | Math, logic, multi-step analysis |
133
+ | `adorbis_write` | Documentation, articles, emails |
134
+ | `adorbis_balance` | Check connection and credit status |
135
+ | `adorbis_models` | List all available departments |
136
+ | `adorbis_multi_turn` | Multi-turn conversation with history |
127
137
 
128
- ### `adorbis_balance`
129
- Check your Adorbis AI credit balance and account status.
138
+ ### Usage examples
130
139
 
131
140
  ```
132
141
  Check my Adorbis balance
133
142
  ```
134
-
135
- ### `adorbis_models`
136
- List all available departments and what they're best for.
137
-
143
+ ```
144
+ Use adorbis_code to write a TypeScript debounce function
145
+ ```
138
146
  ```
139
147
  What Adorbis departments are available?
140
148
  ```
141
-
142
- ### `adorbis_multi_turn`
143
- Multi-turn conversations with full message history.
149
+ ```
150
+ Use adorbis_reason to analyze the time complexity of merge sort
151
+ ```
144
152
 
145
153
  ---
146
154
 
@@ -176,9 +184,13 @@ Your tool (Claude Code / Cursor / Cline)
176
184
  ▼ ▼ ▼
177
185
  Gemini DeepSeek Claude
178
186
  Flash V3 Sonnet
187
+
188
+
189
+ Best model
190
+ for your task
179
191
  ```
180
192
 
181
- Adorbis monitors model health, latency, and cost in real time. When you send a request, it routes to the best available model for that department — automatically. No manual model switching.
193
+ Adorbis monitors model health, latency, and cost in real time. When you send a request, it routes to the best available model automatically. No manual model switching. No vendor lock-in.
182
194
 
183
195
  ---
184
196
 
@@ -188,7 +200,7 @@ Adorbis monitors model health, latency, and cost in real time. When you send a r
188
200
  |---|---|---|
189
201
  | `ADORBIS_API_KEY` | Yes | Your Adorbis API key |
190
202
 
191
- Get a free key (1,000 credits/month) at **https://ai.adorbistech.com**
203
+ Get a free key (1,000 credits/month, no credit card) at **https://ai.adorbistech.com**
192
204
 
193
205
  ---
194
206
 
@@ -201,7 +213,7 @@ Get a free key (1,000 credits/month) at **https://ai.adorbistech.com**
201
213
  | Pro | $30/mo | 50,000 AC |
202
214
  | Business | $100/mo | 200,000 AC |
203
215
 
204
- 1 AC = $0.001 of compute. [Upgrade →](https://ai.adorbistech.com/dashboard)
216
+ 1 AC = $0.001 of underlying compute. [Upgrade →](https://ai.adorbistech.com/dashboard)
205
217
 
206
218
  ---
207
219
 
@@ -209,7 +221,20 @@ Get a free key (1,000 credits/month) at **https://ai.adorbistech.com**
209
221
 
210
222
  - **VS Code Extension** — `ext install adorbis.adorbis-ai`
211
223
  - **CLI setup wizard** — `npx adorbis-init`
212
- - **Docs** — [ai.adorbistech.com/docs](https://ai.adorbistech.com/docs)
224
+ - **Full docs** — [ai.adorbistech.com/docs](https://ai.adorbistech.com/docs)
225
+
226
+ ---
227
+
228
+ ## Requirements
229
+
230
+ - Node.js >= 18
231
+ - An Adorbis API key — [get one free](https://ai.adorbistech.com)
232
+
233
+ ---
234
+
235
+ ## Contributing
236
+
237
+ Issues and PRs welcome at [github.com/adorbistech/adorbis-mcp](https://github.com/adorbistech/adorbis-mcp)
213
238
 
214
239
  ---
215
240
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adorbistech/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Adorbis AI MCP server — one key, every model, auto-routed. Use Adorbis AI from Claude Code, Cursor, Cline, and any MCP-compatible tool.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -49,5 +49,6 @@
49
49
  "dist",
50
50
  "README.md",
51
51
  "LICENSE"
52
- ]
52
+ ],
53
+ "mcpName": "io.github.adorbistech/adorbis-mcp"
53
54
  }