@infinitedusky/indusk-mcp 1.4.1 → 1.4.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.
- package/extensions/dash0/skill.md +5 -2
- package/package.json +1 -1
- package/skills/toolbelt.md +13 -1
|
@@ -4,10 +4,11 @@ Dash0 provides access to your OpenTelemetry data — logs, traces, and metrics
|
|
|
4
4
|
|
|
5
5
|
## Two Interfaces
|
|
6
6
|
|
|
7
|
-
**MCP Server (remote, streamable HTTP):**
|
|
7
|
+
**MCP Server (remote, streamable HTTP — NOT an npm package):**
|
|
8
|
+
- This is a remote server hosted by Dash0, not a local npm package. No `npx`, no `npm install`.
|
|
8
9
|
- Used by Claude Code tools directly during sessions
|
|
9
10
|
- Provides 23 tools for logs, traces, metrics, services
|
|
10
|
-
- Configured in `.mcp.json`
|
|
11
|
+
- Configured in `.mcp.json` with a URL and auth token
|
|
11
12
|
|
|
12
13
|
**CLI (`dash0` binary):**
|
|
13
14
|
- Installed via `brew install dash0hq/dash0-cli/dash0`
|
|
@@ -45,6 +46,8 @@ Dash0 provides access to your OpenTelemetry data — logs, traces, and metrics
|
|
|
45
46
|
|
|
46
47
|
### MCP Server (enabled automatically by `extensions enable dash0`)
|
|
47
48
|
|
|
49
|
+
**Important:** The Dash0 MCP server is a remote hosted service, not an npm package. Do not use `npx` or install anything for the MCP server. You only need a URL and an auth token.
|
|
50
|
+
|
|
48
51
|
The `.mcp.json` entry is added when you enable the extension:
|
|
49
52
|
|
|
50
53
|
```json
|
package/package.json
CHANGED
package/skills/toolbelt.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# InDusk Toolbelt
|
|
2
2
|
|
|
3
|
-
You have MCP tools from
|
|
3
|
+
You have MCP tools from multiple servers. This skill tells you when to use them and how they connect.
|
|
4
|
+
|
|
5
|
+
## MCP Server Types
|
|
6
|
+
|
|
7
|
+
There are two types of MCP servers in your `.mcp.json`:
|
|
8
|
+
|
|
9
|
+
**Command-based** (`"command": "..."`) — a local process that runs on your machine. Examples: indusk, codegraphcontext. These start when Claude Code starts and communicate via stdio.
|
|
10
|
+
|
|
11
|
+
**Streamable HTTP** (`"type": "streamableHttp"`) — a remote server hosted externally. Example: Dash0. These connect over HTTPS to a URL. No local process, no npm package, no `npx`. They just need a URL and auth credentials in `.mcp.json`.
|
|
12
|
+
|
|
13
|
+
Both types expose tools the same way — you call them identically. The difference is where they run.
|
|
14
|
+
|
|
15
|
+
To see which MCP servers and extensions are active, call `extensions_status`.
|
|
4
16
|
|
|
5
17
|
## How the Skills Work Together
|
|
6
18
|
|