|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behaviour with the Apideck MCP Server. |
| 3 | +labels: [bug] |
| 4 | +body: |
| 5 | + - type: dropdown |
| 6 | + id: client_info |
| 7 | + attributes: |
| 8 | + label: MCP Client |
| 9 | + description: Which MCP client are you using? |
| 10 | + options: |
| 11 | + - Claude Desktop |
| 12 | + - Cursor |
| 13 | + - VS Code (MCP ext) |
| 14 | + - Claude Code CLI |
| 15 | + - Other |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + |
| 19 | + - type: input |
| 20 | + id: client_version |
| 21 | + attributes: |
| 22 | + label: MCP Client Version |
| 23 | + description: What version of the MCP client are you using? |
| 24 | + placeholder: "e.g. 0.7.2" |
| 25 | + validations: |
| 26 | + required: true |
| 27 | + |
| 28 | + - type: input |
| 29 | + id: server_version |
| 30 | + attributes: |
| 31 | + label: "@apideck/mcp Version" |
| 32 | + description: What version of the npm package are you running? Check with `npm list @apideck/mcp` or look at the version in your config. |
| 33 | + placeholder: "e.g. 0.1.14" |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | + - type: input |
| 38 | + id: node_version |
| 39 | + attributes: |
| 40 | + label: Node.js Version |
| 41 | + description: Paste the output of `node --version`. |
| 42 | + placeholder: "e.g. v22.13.1" |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: dropdown |
| 47 | + id: os |
| 48 | + attributes: |
| 49 | + label: Operating System |
| 50 | + description: Which operating system are you running? |
| 51 | + options: |
| 52 | + - macOS |
| 53 | + - Windows |
| 54 | + - Linux |
| 55 | + - Other |
| 56 | + validations: |
| 57 | + required: true |
| 58 | + |
| 59 | + - type: dropdown |
| 60 | + id: transport |
| 61 | + attributes: |
| 62 | + label: Transport |
| 63 | + description: Which transport mode are you using to connect to the server? |
| 64 | + options: |
| 65 | + - stdio |
| 66 | + - HTTP (Streamable HTTP) |
| 67 | + - SSE |
| 68 | + validations: |
| 69 | + required: true |
| 70 | + |
| 71 | + - type: textarea |
| 72 | + id: repro_steps |
| 73 | + attributes: |
| 74 | + label: Steps to Reproduce |
| 75 | + description: Provide a clear, step-by-step description of how to reproduce the issue. |
| 76 | + placeholder: | |
| 77 | + 1. Configure the server with ... |
| 78 | + 2. Send the following request ... |
| 79 | + 3. Observe that ... |
| 80 | + validations: |
| 81 | + required: true |
| 82 | + |
| 83 | + - type: textarea |
| 84 | + id: inspector_output |
| 85 | + attributes: |
| 86 | + label: MCP Inspector Output or Logs (optional) |
| 87 | + description: If available, paste the output from `npx @modelcontextprotocol/inspector` or relevant stderr logs. This helps diagnose protocol-level issues. |
| 88 | + placeholder: Paste inspector output or error logs here (optional) |
| 89 | + render: shell |
| 90 | + validations: |
| 91 | + required: false |
| 92 | + |
| 93 | + - type: input |
| 94 | + id: expected |
| 95 | + attributes: |
| 96 | + label: Expected Behaviour |
| 97 | + description: What did you expect to happen? |
| 98 | + placeholder: "e.g. The tool should return a list of invoices." |
| 99 | + validations: |
| 100 | + required: true |
| 101 | + |
| 102 | + - type: textarea |
| 103 | + id: actual |
| 104 | + attributes: |
| 105 | + label: Actual Behaviour |
| 106 | + description: What actually happened? Include any error messages, stack traces, or unexpected output. |
| 107 | + placeholder: "e.g. The tool returned an error: ..." |
| 108 | + render: shell |
| 109 | + validations: |
| 110 | + required: true |
0 commit comments