Postman MCP Server
Postman MCP サーバー
Newmanを使用してPostmanコレクションを実行できるMCP(Model Context Protocol)サーバー。このサーバーにより、LLMはAPIテストを実行し、標準化されたインターフェースを通じて詳細な結果を取得できます。

特徴
Newmanを使用してPostmanコレクションを実行する
環境ファイルのサポート
グローバル変数のサポート
詳細なテスト結果には以下が含まれます:
全体的な成功/失敗のステータス
テストの概要(合計、合格、不合格)
詳細な障害情報
実行タイミング
Related MCP server: Postman MCP Generator
インストール
Smithery経由でインストール
Smithery経由で Claude Desktop 用の Postman Runner を自動的にインストールするには:
npx -y @smithery/cli install mcp-postman --client claude手動インストール
# Clone the repository
git clone <repository-url>
cd mcp-postman
# Install dependencies
pnpm install
# Build the project
pnpm build使用法
構成
~/Library/Application Support/Claude/claude_desktop_config.jsonにある Claude デスクトップ構成ファイルにサーバーを追加します。
{
"mcpServers": {
"postman-runner": {
"command": "node",
"args": ["/absolute/path/to/mcp-postman/build/index.js"]
}
}
}利用可能なツール
ランコレクション
Postman コレクションを実行し、テスト結果を返します。
パラメータ:
collection(必須): PostmanコレクションへのパスまたはURLenvironment(オプション): 環境ファイルへのパスまたはURLglobals(オプション): グローバルファイルへのパスまたはURLiterationCount(オプション): 実行する反復回数
応答例:
{
"success": true,
"summary": {
"total": 5,
"failed": 0,
"passed": 5
},
"failures": [],
"timings": {
"started": "2024-03-14T10:00:00.000Z",
"completed": "2024-03-14T10:00:01.000Z",
"duration": 1000
}
}クロードでの使用例
Claude でサーバーを使用するには、Postman コレクションを実行するように要求します。
「/path/to/collection.json で Postman コレクションを実行し、すべてのテストに合格したかどうかを教えてください」
クロードは次のことを行います:
実行収集ツールを使用する
テスト結果を分析する
人間に分かりやすい実行概要を提供する
発達
プロジェクト構造
src/
├── index.ts # Entry point
├── server/
│ ├── server.ts # MCP Server implementation
│ └── types.ts # Type definitions
└── newman/
└── runner.ts # Newman runner implementation
test/
├── server.test.ts # Server tests
├── newman-runner.test.ts # Runner tests
└── fixtures/ # Test fixtures
└── sample-collection.jsonテストの実行
# Run tests
pnpm test
# Run tests with coverage
pnpm test:coverage建物
# Build the project
pnpm build
# Clean build artifacts
pnpm clean貢献
リポジトリをフォークする
機能ブランチを作成します(
git checkout -b feature/amazing-feature)変更をコミットします (
git commit -m 'Add some amazing feature')ブランチにプッシュする (
git push origin feature/amazing-feature)プルリクエストを開く
ライセンス
ISC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that generates AI agent tools from Postman collections and requests. This server integrates with the Postman API to convert API endpoints into type-safe code that can be used with various AI frameworks.113MIT
- FlicenseBqualityDmaintenanceAn MCP-compatible server that provides tools for integrating selected Postman API requests, allowing LLMs like Claude to interact with APIs through natural language.3
- FlicenseNot gradedqualityDmaintenanceAn MCP server that converts Postman API requests into executable tools for LLMs using the Postman Runtime. It supports complex authentication types and enables seamless integration between Postman collections and MCP clients like Claude Desktop.
- FlicenseNot gradedqualityCmaintenanceAn MCP server generated from Postman API requests, enabling natural language interaction with Postman collections via MCP-compatible clients like Claude.
Related MCP Connectors
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
A basic MCP server to operate on the Postman API.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Gechmind/mcp-postman'
If you have feedback or need assistance with the MCP directory API, please join our Discord server