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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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 '{"mcpServers":{"context7":{"type":"streamable-http","url":"https://mcp.context7.com/mcp","headers":{"CONTEXT7_API_KEY":"YOUR_API_KEY"}}}}' \
34
- --call-json '{"tool":"resolve-library-id","params":{"query":"Express","libraryName":"Express"}}'
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 '{"mcpServers":{"context7":{"type":"streamable-http","url":"https://mcp.context7.com/mcp","headers":{"CONTEXT7_API_KEY":"YOUR_API_KEY"}}}}' `
42
- --call-json '{"tool":"resolve-library-id","params":{"query":"Express","libraryName":"Express"}}'
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 Context7 integration example is covered by [test/cli.examples.test.js](d:/projects/culled/mcp-caller/test/cli.examples.test.js).
90
+ - The example probes are covered by [test/cli.examples.test.js](d:/projects/culled/mcp-caller/test/cli.examples.test.js).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-caller",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A small MCP client CLI that can start a server and call a tool from JSON input.",
5
5
  "type": "module",
6
6
  "main": "index.js",