|
| 1 | +name: Bug report — tool or server behavior |
| 2 | +description: A tool returns the wrong result, a schema or description is wrong, or the server misbehaves. |
| 3 | +labels: ["bug", "needs-triage"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thanks for reporting this. Bug reports with a clean reproduction are the single |
| 9 | + most useful contribution to this project — they're how tool fixes actually get |
| 10 | + made. |
| 11 | +
|
| 12 | + There's an optional **Proposed solution** field at the bottom. If you already |
| 13 | + know what the fix should be, please use it. |
| 14 | +
|
| 15 | + ⚠️ **Never paste a Postman API key, token, or private collection contents into a |
| 16 | + public issue.** Redact anything sensitive, and rotate keys that may have been |
| 17 | + exposed. |
| 18 | +
|
| 19 | + - type: dropdown |
| 20 | + id: server |
| 21 | + attributes: |
| 22 | + label: Which server are you using? |
| 23 | + options: |
| 24 | + - Local (npx / STDIO) |
| 25 | + - Local (Docker) |
| 26 | + - Local (.mcpb bundle) |
| 27 | + - Remote (mcp.postman.com) |
| 28 | + - Not sure |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: input |
| 33 | + id: version |
| 34 | + attributes: |
| 35 | + label: Version |
| 36 | + description: For the local server, the version you installed. For the remote server, enter "remote". |
| 37 | + placeholder: 2.11.2 |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: dropdown |
| 42 | + id: toolset |
| 43 | + attributes: |
| 44 | + label: Toolset |
| 45 | + description: Which toolset flag did you start the server with? |
| 46 | + options: |
| 47 | + - minimal (default) |
| 48 | + - code |
| 49 | + - full |
| 50 | + - learn |
| 51 | + - Not sure |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: input |
| 56 | + id: client |
| 57 | + attributes: |
| 58 | + label: MCP client or host |
| 59 | + placeholder: Claude Code 2.x, Claude Desktop, Cursor, VS Code Copilot, Windsurf, Gemini CLI… |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: input |
| 64 | + id: tool |
| 65 | + attributes: |
| 66 | + label: Tool name |
| 67 | + description: If the problem is with one specific tool. |
| 68 | + placeholder: createCollection |
| 69 | + validations: |
| 70 | + required: false |
| 71 | + |
| 72 | + - type: dropdown |
| 73 | + id: region |
| 74 | + attributes: |
| 75 | + label: Region |
| 76 | + options: |
| 77 | + - us (default) |
| 78 | + - eu |
| 79 | + validations: |
| 80 | + required: false |
| 81 | + |
| 82 | + - type: textarea |
| 83 | + id: what-happened |
| 84 | + attributes: |
| 85 | + label: What happened? |
| 86 | + validations: |
| 87 | + required: true |
| 88 | + |
| 89 | + - type: textarea |
| 90 | + id: expected |
| 91 | + attributes: |
| 92 | + label: What did you expect to happen? |
| 93 | + validations: |
| 94 | + required: true |
| 95 | + |
| 96 | + - type: textarea |
| 97 | + id: repro |
| 98 | + attributes: |
| 99 | + label: Steps to reproduce |
| 100 | + description: | |
| 101 | + Include the prompt you gave your agent as well as the tool arguments, if you have |
| 102 | + them — MCP behavior often depends on how the tool was invoked. |
| 103 | + placeholder: | |
| 104 | + 1. Started the server with `--full` |
| 105 | + 2. Asked the agent: "..." |
| 106 | + 3. It called `createCollection` with { ... } |
| 107 | + 4. Got ... |
| 108 | + validations: |
| 109 | + required: true |
| 110 | + |
| 111 | + - type: textarea |
| 112 | + id: output |
| 113 | + attributes: |
| 114 | + label: Request, response, or error output |
| 115 | + description: Redact keys, tokens, IDs, and anything private. |
| 116 | + render: text |
| 117 | + validations: |
| 118 | + required: false |
| 119 | + |
| 120 | + - type: textarea |
| 121 | + id: proposed-solution |
| 122 | + attributes: |
| 123 | + label: Proposed solution |
| 124 | + description: | |
| 125 | + Already know what the fix should be? Describe it here — a schema change, a |
| 126 | + corrected description, a code snippet, whatever you have. The server |
| 127 | + implementation is synced from Postman's internal source of truth, so an issue is |
| 128 | + the place where a proposed fix can actually be acted on. We credit contributions |
| 129 | + that ship. |
| 130 | + validations: |
| 131 | + required: false |
| 132 | + |
| 133 | + - type: input |
| 134 | + id: environment |
| 135 | + attributes: |
| 136 | + label: OS and Node version |
| 137 | + placeholder: macOS 15.1, Node 20.11.0 |
| 138 | + validations: |
| 139 | + required: false |
| 140 | + |
| 141 | + - type: checkboxes |
| 142 | + id: checks |
| 143 | + attributes: |
| 144 | + label: Before you submit |
| 145 | + options: |
| 146 | + - label: I searched the existing issues and this isn't a duplicate. |
| 147 | + required: true |
| 148 | + - label: This is not a security vulnerability (those go through [SECURITY.md](https://github.com/postmanlabs/postman-mcp-server/blob/main/SECURITY.md)). |
| 149 | + required: true |
| 150 | + - label: I haven't included any API keys, tokens, or private data. |
| 151 | + required: true |
0 commit comments