mcp-caller 0.0.2 → 0.0.3
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,16 +30,16 @@ Call a remote streamable HTTP MCP server:
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
npx -y mcp-caller \
|
|
33
|
-
--server-json '{"
|
|
34
|
-
--call-json '{"tool":"
|
|
33
|
+
--server-json '{"type":"streamable-http","url":"https://gitmcp.io/idosal/git-mcp"}' \
|
|
34
|
+
--call-json '{"tool":"fetch_git_mcp_documentation","params":{}}'
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
PowerShell:
|
|
38
38
|
|
|
39
39
|
```powershell
|
|
40
40
|
npx -y mcp-caller `
|
|
41
|
-
--server-json '{"
|
|
42
|
-
--call-json '{"tool":"
|
|
41
|
+
--server-json '{"type":"streamable-http","url":"https://gitmcp.io/idosal/git-mcp"}' `
|
|
42
|
+
--call-json '{"tool":"fetch_git_mcp_documentation","params":{}}'
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
Read JSON from files instead of inline values:
|
|
@@ -87,4 +87,4 @@ Call JSON:
|
|
|
87
87
|
|
|
88
88
|
- The CLI prints text content when the tool result contains text.
|
|
89
89
|
- Use `--pretty` to format non-text JSON output.
|
|
90
|
-
- The
|
|
90
|
+
- The example probes are covered by [test/cli.examples.test.js](d:/projects/culled/mcp-caller/test/cli.examples.test.js).
|