Skip to content

Commit 8a36a47

Browse files
committed
update readme
1 parent 4e26d20 commit 8a36a47

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,14 @@ This MCP server currently exposes two foundation time-series models from the FAI
3535

3636
### Option 1: Install from npm (Recommended)
3737

38-
```bash
39-
npm install @faim-group/mcp
40-
```
41-
42-
Then configure your client to use it:
38+
Configure your client to use it directly with `npx`:
4339

4440
```json
4541
{
4642
"mcpServers": {
4743
"faim": {
48-
"command": "node",
49-
"args": ["-e", "require('@faim-group/mcp')"],
44+
"command": "npx",
45+
"args": ["-y", "@faim-group/mcp"],
5046
"env": {
5147
"FAIM_API_KEY": "your-api-key-here"
5248
}
@@ -55,7 +51,9 @@ Then configure your client to use it:
5551
}
5652
```
5753

58-
Or if installed globally:
54+
No installation required - `npx` will automatically download and run the latest version.
55+
56+
Alternatively, if you prefer to install globally first:
5957

6058
```bash
6159
npm install -g @faim-group/mcp

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faim-group/mcp",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "MCP server for FAIM forecasting SDK - Enables Claude to perform time series forecasting using Chronos2 and TiRex models",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)