@cliniq360/eigi-mcp 1.0.3 → 1.0.5
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 +27 -20
- package/package.json +1 -1
- package/dist/pages/agents-app-v2.html +0 -235
- package/dist/pages/conversation-detail-app.html +0 -270
- package/dist/pages/conversations-app.html +0 -285
- package/dist/pages/conversations-list-app.html +0 -285
- package/dist/pages/interactive-agent-v2.html +0 -502
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ Add to your Claude Desktop config - no installation required:
|
|
|
66
66
|
Connect directly to the hosted eigi.ai MCP server. **No installation required.**
|
|
67
67
|
|
|
68
68
|
**Supported authentication methods:**
|
|
69
|
+
|
|
69
70
|
- Header: `X-API-Key: YOUR_KEY`
|
|
70
71
|
- Header: `Authorization: Bearer YOUR_KEY`
|
|
71
72
|
- Query parameter: `?api_key=YOUR_KEY`
|
|
@@ -110,10 +111,10 @@ This server is published to the [MCP Registry](https://github.com/modelcontextpr
|
|
|
110
111
|
io.github.eigi-ai/eigi
|
|
111
112
|
```
|
|
112
113
|
|
|
113
|
-
| Mode
|
|
114
|
-
|
|
115
|
-
| **Remote** | streamable-http | `https://mcp.eigi.ai/mcp`
|
|
116
|
-
| **Local**
|
|
114
|
+
| Mode | Transport | Endpoint |
|
|
115
|
+
| ---------- | --------------- | --------------------------------- |
|
|
116
|
+
| **Remote** | streamable-http | `https://mcp.eigi.ai/mcp` |
|
|
117
|
+
| **Local** | stdio | `npx @cliniq360/eigi-mcp --stdio` |
|
|
117
118
|
|
|
118
119
|
---
|
|
119
120
|
|
|
@@ -164,12 +165,12 @@ For offline use or custom deployments:
|
|
|
164
165
|
|
|
165
166
|
### Environment Variables
|
|
166
167
|
|
|
167
|
-
| Variable
|
|
168
|
-
|
|
169
|
-
| `EIGI_API_KEY`
|
|
170
|
-
| `EIGI_API_BASE_URL`
|
|
171
|
-
| `VITE_EIGI_API_BASE_URL` | API URL for browser builds | `https://prod.eigi.ai` | No
|
|
172
|
-
| `PORT`
|
|
168
|
+
| Variable | Description | Default | Required |
|
|
169
|
+
| ------------------------ | -------------------------- | ---------------------- | -------------------- |
|
|
170
|
+
| `EIGI_API_KEY` | Your eigi.ai API key | - | **Yes** (stdio mode) |
|
|
171
|
+
| `EIGI_API_BASE_URL` | Backend API URL | `https://prod.eigi.ai` | No |
|
|
172
|
+
| `VITE_EIGI_API_BASE_URL` | API URL for browser builds | `https://prod.eigi.ai` | No |
|
|
173
|
+
| `PORT` | Server port (HTTP mode) | `3001` | No |
|
|
173
174
|
|
|
174
175
|
### Environment File (Development)
|
|
175
176
|
|
|
@@ -197,16 +198,16 @@ PORT=3001
|
|
|
197
198
|
|
|
198
199
|
### Quick Reference
|
|
199
200
|
|
|
200
|
-
| Command
|
|
201
|
-
|
|
202
|
-
| `npm install`
|
|
203
|
-
| `npm run dev`
|
|
204
|
-
| `npm run build`
|
|
205
|
-
| `npm run build:npm`
|
|
206
|
-
| `npm run serve`
|
|
207
|
-
| `npm run serve:stdio` | Start stdio server
|
|
208
|
-
| `npm run start`
|
|
209
|
-
| `npm run start:stdio` | Build + serve stdio
|
|
201
|
+
| Command | Description |
|
|
202
|
+
| --------------------- | ---------------------------------- |
|
|
203
|
+
| `npm install` | Install dependencies |
|
|
204
|
+
| `npm run dev` | Development mode with hot-reload |
|
|
205
|
+
| `npm run build` | Build for production (HTTP server) |
|
|
206
|
+
| `npm run build:npm` | Build for npm package (stdio) |
|
|
207
|
+
| `npm run serve` | Start HTTP server |
|
|
208
|
+
| `npm run serve:stdio` | Start stdio server |
|
|
209
|
+
| `npm run start` | Build + serve HTTP |
|
|
210
|
+
| `npm run start:stdio` | Build + serve stdio |
|
|
210
211
|
|
|
211
212
|
### Helper Script
|
|
212
213
|
|
|
@@ -609,6 +610,7 @@ EIGI_API_KEY=your-key npx @cliniq360/eigi-mcp --stdio
|
|
|
609
610
|
```
|
|
610
611
|
|
|
611
612
|
Or in Claude Desktop config:
|
|
613
|
+
|
|
612
614
|
```json
|
|
613
615
|
{
|
|
614
616
|
"env": {
|
|
@@ -663,6 +665,7 @@ curl -X POST "http://localhost:3001/mcp?api_key=your-api-key-here" \
|
|
|
663
665
|
The package is published as `@cliniq360/eigi-mcp` via GitHub Actions.
|
|
664
666
|
|
|
665
667
|
**Automated Publishing:**
|
|
668
|
+
|
|
666
669
|
1. Update version in `package.json`
|
|
667
670
|
2. Commit changes
|
|
668
671
|
3. Create a git tag: `git tag v1.0.0`
|
|
@@ -670,6 +673,7 @@ The package is published as `@cliniq360/eigi-mcp` via GitHub Actions.
|
|
|
670
673
|
5. GitHub Actions automatically publishes to npm
|
|
671
674
|
|
|
672
675
|
**Manual Publishing (if needed):**
|
|
676
|
+
|
|
673
677
|
```bash
|
|
674
678
|
# Build for npm
|
|
675
679
|
npm run build:npm
|
|
@@ -681,10 +685,12 @@ npm publish --access public
|
|
|
681
685
|
### MCP Registry
|
|
682
686
|
|
|
683
687
|
The server is registered with:
|
|
688
|
+
|
|
684
689
|
- **Registry Name**: `io.github.eigi-ai/eigi`
|
|
685
690
|
- **npm Package**: `@cliniq360/eigi-mcp`
|
|
686
691
|
|
|
687
692
|
Configuration is in `server.json`:
|
|
693
|
+
|
|
688
694
|
```json
|
|
689
695
|
{
|
|
690
696
|
"mcpName": "io.github.eigi-ai/eigi",
|
|
@@ -706,6 +712,7 @@ Configuration is in `server.json`:
|
|
|
706
712
|
### GitHub Actions Workflow
|
|
707
713
|
|
|
708
714
|
The `.github/workflows/publish-mcp.yml` workflow:
|
|
715
|
+
|
|
709
716
|
- Triggers on `v*` tags
|
|
710
717
|
- Uses OIDC for npm provenance
|
|
711
718
|
- Builds and publishes to npm registry
|
package/package.json
CHANGED