1. Conduid
  2. Files
  3. Caller
MCP server · Files

Caller

MCP client CLI that starts an MCP server, performs the protocol handshake, and calls a tool by JSON input.

34Low

Scored 4 months ago · breakdown

About Caller

Caller is an MCP server in the Files category: mCP client CLI that starts an MCP server, performs the protocol handshake, and calls a tool by JSON input. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/AB498/mcp-caller

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Caller

Powered by Claude · Grounded in docs

I know everything about Caller. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

mcp-caller

mcp-caller is a small MCP client CLI that starts an MCP server, performs the protocol handshake, and calls a tool by JSON input.

Install

npm install -g mcp-caller

Usage

Call a stdio MCP server:

npx -y mcp-caller \
  --server-json '{"type":"stdio","command":"uvx","args":["--from","git+https://github.com/macsymwang/hello-mcp-server.git","hello-mcp-server"]}' \
  --call-json '{"tool":"say_hello","params":{"name":"world"}}'

PowerShell:

npx -y mcp-caller `
  --server-json '{"type":"stdio","command":"uvx","args":["--from","git+https://github.com/macsymwang/hello-mcp-server.git","hello-mcp-server"]}' `
  --call-json '{"tool":"say_hello","params":{"name":"world"}}'

Call a remote streamable HTTP MCP server:

npx -y mcp-caller \
  --server-json '{"type":"streamable-http","url":"https://gitmcp.io/idosal/git-mcp"}' \
  --call-json '{"tool":"fetch_git_mcp_documentation","params":{}}'

PowerShell:

npx -y mcp-caller `
  --server-json '{"type":"streamable-http","url":"https://gitmcp.io/idosal/git-mcp"}' `
  --call-json '{"tool":"fetch_git_mcp_documentation","params":{}}'

Read JSON from files instead of inline values:

npx -y mcp-caller --server-file server.json --call-file call.json

Short call form:

npx -y mcp-caller --server-file server.json --tool say_hello --params-json '{"name":"world"}'

List callable tools:

npx -y mcp-caller --server-file server.json --list-tools

Inspect tools, prompts, and resources:

npx -y mcp-caller --server-file server.json --inspect --pretty

JSON Shapes

Server JSON:

{
  "mcpServers": {
    "name": {
      "type": "stdio",
      "command": "node",
      "args": ["server.js"]
    }
  }
}

Or a single server object:

{
  "type": "streamable-http",
  "url": "https://example.com/mcp",
  "headers": {}
}

Call JSON:

{
  "tool": "tool-name",
  "params": {}
}

Notes

  • The CLI prints text content when the tool result contains text.
  • Use --pretty to format non-text JSON output.
  • The example probes are covered by test/cli.examples.test.js.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Caller

How do I install Caller?

Run git clone https://github.com/AB498/mcp-caller, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Caller safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Caller still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.