Postmancer
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PostmancerSend a GET request to https://api.example.com/users"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Postmancer

A standalone MCP server for API testing and management, allowing AI assistants to interact with RESTful APIs through natural language.
Overview
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 specifically for AI assistants.
Related MCP server: MCP RAG Agent Server
Features
Make HTTP requests to any REST API
Save and organize requests in collections
Set and use environment variables with variable substitution
Multiple authentication methods (Basic, Bearer, API Key, OAuth2)
Request/response history and testing
Quick Start
Installation
# Install globally
npm install -g postmancer
# Or run directly with npx
npx postmancerUsing with Claude Desktop
Add this to your Claude Desktop configuration file:
Windows:
%USERPROFILE%\.claude\claude_desktop_config.jsonmacOS/Linux:
~/.claude/claude_desktop_config.json
{
"mcpServers": {
"postmancer": {
"command": "npx",
"args": ["-y", "postmancer"],
"env": {
"LOG_LEVEL": "info"
}
}
}
}Using with Docker
docker run -i --rm \
--mount type=bind,src=/path/to/collections,dst=/data/collections \
postmancerAvailable Tools
Postmancer provides the following tools to AI assistants:
http_request - Send HTTP requests to any URL
list_collections - View all your saved API collections
list_requests - View all requests in a collection
save_request - Save a request to a collection
request_from_collection - Execute a saved request
set_environment_variable - Set variables for request templates
get_environment_variables - View all environment variables
Configuration
Configure Postmancer with these environment variables:
COLLECTIONS_PATH: Path to store collections (default: ~/.postmancer)LOG_LEVEL: Logging level (debug, info, warn, error) (default: info)POSTMANCER_ENCRYPTION_KEY: Secret key used to encrypt credentials and tokens (generates a random key if not provided)ENCRYPTION_KEY: Secret key used to encrypt environment variables marked as secrets (uses default key if not provided)
For security in production environments, it's strongly recommended to set these encryption keys rather than using the defaults.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for AI access to Swagger by SmartBear.
AI-native mock API server with MCP. Create REST/SOAP mocks from Claude, Cursor, or Windsurf.
MCP server for building and testing AI agents with multi-model experimentation and insights.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA universal MCP server that connects any REST API to AI assistants via OpenAPI or Postman specifications. It enables dynamic tool creation with GraphQL-style field selection and automatic schema inference for efficient data retrieval.8 npm6-
- FlicenseNot gradedqualityDmaintenanceThis MCP server enables intelligent API testing automation by combining RAG knowledge retrieval with tool execution capabilities. It allows QA engineers to perform natural language-driven API testing with contextual knowledge support.-
- AlicenseNot gradedqualityDmaintenanceAn MCP server for AI-powered API testing that enables automated positive, negative, and security testing directly from AI chat interfaces. It supports multiple AI providers and generates detailed security reports.7 npm-
- AlicenseNot gradedqualityBmaintenanceConverts any OpenAPI specification into an MCP server, allowing AI assistants to interact with REST APIs through natural language.4 npm1MIT