{
  "info": {
    "name": "Dock Certs — mcp.ai",
    "description": "REST API for the Dock Certs 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/dock_certs",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dock_certs_create_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "api",
            "key"
          ]
        },
        "description": "Tool to create an API key. Use when you need to generate a new API key with optional alias and IP allowlist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ips\": \"\",\n  \"alias\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a webhook endpoint. Use when you need Dock.io to push event notifications to your service.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"events\": \"\",\n  \"status\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_delete_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "api",
            "key"
          ]
        },
        "description": "Tool to delete a specific API key. Use after confirming the API key's ID via list_api_keys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_delete_credential",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/credential",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "credential"
          ]
        },
        "description": "Tool to delete a verifiable credential. Use after confirming the credential is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Tool to delete a specific tag. Use when you have a tag ID and want to permanently remove it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Tool to delete a specific webhook. Use after confirming the webhook's ID via list_webhooks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "api",
            "key"
          ]
        },
        "description": "Tool to retrieve details of an API key. Tries single-key endpoint first, then falls back to listing and filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_api_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/api/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "api",
            "keys"
          ]
        },
        "description": "Tool to list all API keys. Use when you need to retrieve all API keys for the authenticated account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_credential",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/credential",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "credential"
          ]
        },
        "description": "Tool to retrieve a verifiable credential by its unique ID. If a password was used to persist it, include the same password to decrypt and return the full credential. Otherwise, only metadata is return",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"password\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_credentials",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/credentials",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "credentials"
          ]
        },
        "description": "Tool to retrieve a list of credential metadata. Use when you need to collect credential details with optional pagination or filtering after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"filter\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_did",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/did",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "did"
          ]
        },
        "description": "Tool to retrieve a DID Document by its DID. Use after you have a valid DID to resolve and inspect its DID Document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"did\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_registries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/registries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "registries"
          ]
        },
        "description": "Tool to retrieve a list of revocation registries. Use when you need to list all registries created by the authenticated account with optional pagination and filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"did\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "webhook"
          ]
        },
        "description": "Tool to retrieve a specific webhook's details. Use after confirming you have a valid webhook ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_retrieve_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "webhooks"
          ]
        },
        "description": "Tool to list configured webhooks. Use when you need to retrieve all webhook endpoints configured for your account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dock_certs_verify",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify"
          ]
        },
        "description": "Tool to verify a verifiable credential or presentation. Use after receiving a credential or presentation from an issuer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"credential\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}