MCP REST API Tester MCP Server

A TypeScript-based MCP server that enables testing of REST APIs through Cline. This tool allows you to test and interact with any REST API endpoints

Local serverstdioTypeScript

What is the MCP REST API Tester MCP server?

A TypeScript-based MCP server that enables testing of REST APIs through Cline. This tool allows you to test and interact with any REST API endpoints directly from your development environment. The mcp rest api tester mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

What it actually does

  • Supports GET, POST, PUT, DELETE, PATCH methods
  • Handles authentication (Basic, Bearer, API Key)
  • Normalizes endpoints automatically
  • Provides detailed response information
  • Configurable SSL verification and response limits

Adding it to your client

The server ships on npm as dkmaker-mcp-rest-api, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • Windows — ⚠️ IMPORTANT: Due to a known issue with Windows path resolution (issue #40), you
  • macOS — Add to ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json: json { "mcpServers": {

Configuration

You will need 8 environment variables: REST_BASE_URL, AUTH_BASIC_USERNAME, AUTH_BASIC_PASSWORD, AUTH_BEARER, AUTH_APIKEY_HEADER_NAME, AUTH_APIKEY_VALUE, REST_ENABLE_SSL_VERIFY, REST_RESPONSE_SIZE_LIMIT. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp rest api tester mcp server does with a few real requests.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP REST API Tester's toolset — Windows, macOS — is a fair guide to whether it matches your workflow. It is maintained by dkmaker; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP REST API Tester's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Windows⚠️ **IMPORTANT**: Due to a known issue with Windows path resolution ([issue #40](https://github.com/modelcontextprotocol/servers/issues/40)), you must use the full path instead of %APPDATA%.
macOSAdd to ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json: json { "mcpServers": { "rest-api": { "command": "npx", "args": [ "-y", "dkmaker-mcp-rest-api" ], "env"

How to install the MCP REST API Tester MCP server

{
  "mcpServers": {
    "rest-api": {
      "command": "npx",
      "args": ["-y", "dkmaker-mcp-rest-api"],
      "env": {
        "REST_BASE_URL": "your-value",
        "AUTH_BASIC_USERNAME": "your-value",
        "AUTH_BASIC_PASSWORD": "your-value",
        "AUTH_BEARER": "your-value",
        "AUTH_APIKEY_HEADER_NAME": "your-value",
        "AUTH_APIKEY_VALUE": "your-value",
        "REST_ENABLE_SSL_VERIFY": "your-value",
        "REST_RESPONSE_SIZE_LIMIT": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
REST_BASE_URLEndpoint or connection string the server talks to.Yes
AUTH_BASIC_USERNAMEConfiguration value read at startup.Optional
AUTH_BASIC_PASSWORDConfiguration value read at startup.Optional
AUTH_BEARERConfiguration value read at startup.Optional
AUTH_APIKEY_HEADER_NAMECredential the server authenticates with.Yes
AUTH_APIKEY_VALUECredential the server authenticates with.Yes
REST_ENABLE_SSL_VERIFYConfiguration value read at startup.Optional
REST_RESPONSE_SIZE_LIMITConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP REST API Tester to Windows.
  • Use MCP REST API Tester to macOS.

Frequently asked questions

Basic Authentication (username/password), Bearer Token, and API Key (custom header). Only one method should be configured at a time.