@qubiton/mcp-server 0.2.1397 → 0.2.1590
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 +6 -6
- package/build/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ Add to VS Code settings under `cline.mcpServers`:
|
|
|
100
100
|
|
|
101
101
|
## How It Works
|
|
102
102
|
|
|
103
|
-
This package is a lightweight stdio-to-HTTP bridge. It connects to the QubitOn MCP server at `https://
|
|
103
|
+
This package is a lightweight stdio-to-HTTP bridge. It connects to the QubitOn MCP server at `https://mcp.qubiton.com/mcp`, discovers available tools, prompts, and resources, and re-exposes them locally via stdio for Claude Desktop.
|
|
104
104
|
|
|
105
105
|
## Authentication
|
|
106
106
|
|
|
@@ -120,7 +120,7 @@ If you have an OAuth2 token from `POST /api/oauth/token` (client_credentials gra
|
|
|
120
120
|
|----------|----------|---------|-------------|
|
|
121
121
|
| `QUBITON_API_KEY` | Yes | — | Your API key (starts with `svm`) |
|
|
122
122
|
| `QUBITON_TOKEN` | No | — | OAuth2 Bearer token for additional auth |
|
|
123
|
-
| `QUBITON_BASE_URL` | No | `https://
|
|
123
|
+
| `QUBITON_BASE_URL` | No | `https://mcp.qubiton.com` | Override the MCP server base URL |
|
|
124
124
|
|
|
125
125
|
## Available Tools (37)
|
|
126
126
|
|
|
@@ -173,16 +173,16 @@ Prompts may be plan-gated. See [Pricing](https://www.qubiton.com/pricing) for de
|
|
|
173
173
|
|
|
174
174
|
### Discovery Endpoints
|
|
175
175
|
|
|
176
|
-
- [MCP Manifest](https://
|
|
177
|
-
- [Resource Content](https://
|
|
176
|
+
- [MCP Manifest](https://mcp.qubiton.com/.well-known/mcp.json) -- machine-readable server metadata
|
|
177
|
+
- [Resource Content](https://mcp.qubiton.com/api/portal/mcp/resources/{name}) -- fetch any resource by name
|
|
178
178
|
|
|
179
179
|
### Accessing Resource Content
|
|
180
180
|
|
|
181
181
|
Resources are also available over plain HTTP for non-MCP clients:
|
|
182
182
|
|
|
183
183
|
```bash
|
|
184
|
-
curl https://
|
|
185
|
-
curl https://
|
|
184
|
+
curl https://mcp.qubiton.com/api/portal/mcp/resources/tool_inventory
|
|
185
|
+
curl https://mcp.qubiton.com/api/portal/mcp/resources/supported_countries
|
|
186
186
|
```
|
|
187
187
|
|
|
188
188
|
Available resources: `tool_inventory`, `entity_risk_categories`, `healthcare_types`, `india_identity_types`, `certification_types`, `supported_countries`, `about`.
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* QubitOn MCP Server
|
|
4
4
|
*
|
|
5
5
|
* Stdio-to-HTTP bridge that proxies MCP requests from Claude Desktop
|
|
6
|
-
* to the QubitOn MCP server at
|
|
6
|
+
* to the QubitOn MCP server at mcp.qubiton.com/mcp.
|
|
7
7
|
*
|
|
8
8
|
* Install in claude_desktop_config.json:
|
|
9
9
|
* {
|
|
@@ -20,7 +20,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
20
20
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
21
21
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
22
22
|
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
|
23
|
-
const DEFAULT_BASE_URL = "https://
|
|
23
|
+
const DEFAULT_BASE_URL = "https://mcp.qubiton.com";
|
|
24
24
|
// Reconnect config
|
|
25
25
|
const INITIAL_DELAY_MS = 1000;
|
|
26
26
|
const MAX_DELAY_MS = 60_000;
|