A standalone MCP server for API testing and management, allowing AI assistants to interact with RESTful APIs through natural language. Postmancer is an MCP (Model Context Protocol) server that enables AI assistants like Claude to make HTTP requests, manage collections of API endpoints, and test API responses. It provides similar functionality to tools like Postman or Insomnia but designed specific
Add this skill
npx mdskills install hijaz/postmancerWell-documented MCP server enabling comprehensive API testing and management through AI assistants.
1[](https://mseep.ai/app/hijaz-postmancer)23# Postmancer4[](https://archestra.ai/mcp-catalog/hijaz__postmancer)5678A standalone MCP server for API testing and management, allowing AI assistants to interact with RESTful APIs through natural language.910## Overview1112Postmancer is an MCP (Model Context Protocol) server that enables AI assistants like Claude to make HTTP requests, manage collections of API endpoints, and test API responses. It provides similar functionality to tools like Postman or Insomnia but designed specifically for AI assistants.1314## Features1516- Make HTTP requests to any REST API17- Save and organize requests in collections18- Set and use environment variables with variable substitution19- Multiple authentication methods (Basic, Bearer, API Key, OAuth2)20- Request/response history and testing2122## Quick Start2324### Installation2526```bash27# Install globally28npm install -g postmancer2930# Or run directly with npx31npx postmancer32```3334### Using with Claude Desktop3536Add this to your Claude Desktop configuration file:37- Windows: `%USERPROFILE%\.claude\claude_desktop_config.json`38- macOS/Linux: `~/.claude/claude_desktop_config.json`3940```json41{42 "mcpServers": {43 "postmancer": {44 "command": "npx",45 "args": ["-y", "postmancer"],46 "env": {47 "LOG_LEVEL": "info"48 }49 }50 }51}52```5354### Using with Docker5556```bash57docker run -i --rm \58 --mount type=bind,src=/path/to/collections,dst=/data/collections \59 postmancer60```6162## Available Tools6364Postmancer provides the following tools to AI assistants:65661. **http_request** - Send HTTP requests to any URL672. **list_collections** - View all your saved API collections683. **list_requests** - View all requests in a collection694. **save_request** - Save a request to a collection705. **request_from_collection** - Execute a saved request716. **set_environment_variable** - Set variables for request templates727. **get_environment_variables** - View all environment variables7374## Configuration7576Configure Postmancer with these environment variables:7778- `COLLECTIONS_PATH`: Path to store collections (default: ~/.postmancer)79- `LOG_LEVEL`: Logging level (debug, info, warn, error) (default: info)80- `POSTMANCER_ENCRYPTION_KEY`: Secret key used to encrypt credentials and tokens (generates a random key if not provided)81- `ENCRYPTION_KEY`: Secret key used to encrypt environment variables marked as secrets (uses default key if not provided)8283For security in production environments, it's strongly recommended to set these encryption keys rather than using the defaults.8485## License8687MIT
Full transparency — inspect the skill content before installing.