{
  "info": {
    "name": "Devin MCP — mcp.ai",
    "description": "REST API for the Devin MCP MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/devin_mcp",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "devin_mcp_ask_question",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ask/question",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ask",
            "question"
          ]
        },
        "description": "Ask any question about a GitHub repository and get an AI-powered, context-grounded response.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"question\": \"\",\n  \"repoName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "devin_mcp_list_available_repos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/available/repos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "available",
            "repos"
          ]
        },
        "description": "List all repositories available to query with your Devin account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "devin_mcp_read_wiki_contents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/wiki/contents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "wiki",
            "contents"
          ]
        },
        "description": "View documentation about a GitHub repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repoName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "devin_mcp_read_wiki_structure",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/wiki/structure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "wiki",
            "structure"
          ]
        },
        "description": "Get a list of documentation topics for a GitHub repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repoName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}