Postman MCP Server
Developmentstdiohttp-streaming
Postman's official MCP server that connects the Postman platform to AI tools. Gives agents the ability to access workspaces, manage collections and environments, work with API specifications, run requests, and automate API workflows through natural language. Useful for exploring, testing, and maintaining APIs directly from an MCP-compatible assistant.
Подключение
Добавьте эту конфигурацию в .claude/mcp.json
Подключение:
{
"mcpServers": {
"postman": {
"command": "npx",
"args": [
"-y",
"@postman/postman-mcp-server"
],
"env": {
"POSTMAN_API_KEY": "<YOUR_POSTMAN_API_KEY>"
}
}
}
}Инструменты (3)
list_collections
List the Postman collections available in the authenticated account or workspace.
{
"type": "object",
"properties": {
"workspace": {
"type": "string",
"description": "Optional workspace ID to scope the results"
}
}
}get_collection
Retrieve the contents of a specific Postman collection.
{
"type": "object",
"required": [
"collection_id"
],
"properties": {
"collection_id": {
"type": "string",
"description": "ID of the collection to fetch"
}
}
}create_collection
Create a new Postman collection in a workspace.
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the new collection"
},
"workspace": {
"type": "string",
"description": "Workspace ID to create the collection in"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Звёзды
- 0
- Последнее обновление
- 12 июля 2026 г.