This directory contains smoke tests for the MCP quickstart examples. These tests verify that all example servers and clients can start and respond correctly, without calling external APIs.
The smoke tests verify:
- Servers: Each weather server (Python, TypeScript, Rust) can start and respond to MCP protocol requests
- Clients: Each MCP client (Python, TypeScript) can connect to a mock server and list tools
./tests/smoke-test.sh- Node.js 16+
- npm (for Node.js dependencies)
- Python 3.10+
- uv (Python package manager)
- Rust stable
- Cargo (for Rust builds)
Each server test:
- Builds/prepares the server if needed
- Uses
mcp-test-client.tsto connect to the server via stdio - Sends MCP initialize and
tools/listrequests - Verifies the server responds with a valid tool list
- Reports pass/fail
Each client test:
- Builds/prepares the client if needed
- Runs the client CLI without an ANTHROPIC_API_KEY
- The client connects to a mock server, lists tools, and exits gracefully
- Verifies the client can connect and communicate via MCP protocol
- Reports pass/fail
Note: Client tests run the actual CLI programs without an Anthropic API key. The clients are designed to handle missing API keys gracefully by listing available tools and exiting, which is perfect for smoke testing the MCP connectivity without requiring external API calls.
A minimal MCP client that connects to a server, initializes the session, and lists available tools. Used to test servers without requiring a full client implementation.
Usage:
node tests/helpers/build/mcp-test-client.js <command> [args...]Example:
node tests/helpers/build/mcp-test-client.js python weather.pyA minimal MCP server that verifies clients call the tools/list method and returns an empty tool list. Used to test clients without requiring a real weather server. Exits with an error if the client doesn't call tools/list.
Usage:
node tests/helpers/build/mock-mcp-server.jsTests run automatically on pull requests via GitHub Actions. See .github/workflows/ci.yml for the CI configuration.
Install required dependencies:
# Python/uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Node.js (via nvm)
nvm install 18
# Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shTo add a new test:
- Add a new test function in
smoke-test.sh(e.g.,test_new_feature()) - Include dependency checks, builds, and test execution in the function
- Add a
run_testcall in the "Run all tests" section - Update this README
These tests are designed to be simple and low-maintenance:
- Shell scripts for orchestration (language-agnostic)
- Minimal TypeScript helpers for test infrastructure
- No external API dependencies