LaunchKit · 2026
Back to Skills

mcp-client

Model Context Protocol (MCP) client - connect to tools, data sources and services.

0
632 downloads
by @nantes

Setup & Installation

openclaw skills install @nantes/mcp-client

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install mcp-client

Version History

v1.0.3Feb 22, 2026 - Version note by skill developer:

Force rescan - verified working

What This Skill Does

A Model Context Protocol (MCP) client that connects to MCP-enabled servers to invoke tools, read resources, and access prompt templates. Available as both a PowerShell script and a Python library.

Handles the MCP HTTP protocol handshake and request formatting so you don't have to write raw REST calls against the spec yourself.

When to use it

  • Calling a search tool on a remote MCP server with custom query arguments
  • Reading a config file from a server-side file:// resource URI
  • Listing all tools exposed by an MCP server before wiring them into an agent
  • Using structured prompt templates served by an MCP-enabled service
  • Scripting MCP tool calls from a Python automation pipeline

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: call the 'search' tool on my MCP server at https://mcp-server.com with query 'quantum'

AGENT
  1. 1Connect to the MCP server using the server URL and API key
  2. 2List available tools to confirm 'search' is exposed
  3. 3Invoke the 'search' tool with argument {"query": "quantum"}
  4. 4Receive and return the tool response
OUTPUT

Search results returned by the MCP server's 'search' tool