# WPBrigade > Infrastructure for issuing, verifying, and managing Open Badges 3.0 and W3C Verifiable Credentials. Self-hostable, API-first, standards-compliant. WPBrigade lets organizations issue tamper-proof digital credentials (badges, certificates, diplomas) to recipients who can share and verify them publicly. Built on Open Badges 3.0 and W3C Verifiable Credentials standards. ## Key capabilities - Issue Open Badges 3.0 credentials with cryptographic proof - Verify credentials by URL or ID — publicly accessible, no login required - Revoke and renew credentials - Multi-tenant: multiple organizations in one deployment - Batch issuance for large cohorts - Self-hostable via Docker Compose or Kubernetes (Helm chart provided) - Full REST API with versioning (`/api/v1`) - Interactive CLI (`certo` command) and MCP server for AI assistants ## API - [OpenAPI / Swagger UI](https://wpbrigade.com/api/documentation) - [API base URL](https://wpbrigade.com/api/v1) - [Verify a credential](https://wpbrigade.com/api/credentials/{id}/verify) — GET, no auth required - [Health check](https://wpbrigade.com/api/health) - [Prometheus metrics](https://wpbrigade.com/api/metrics) ## MCP Server (for AI assistants) Use WPBrigade from Claude Desktop, Cursor, or VS Code Copilot: ```json { "mcpServers": { "wpbrigade": { "command": "npx", "args": ["-y", "@certo/mcp"], "env": { "CERTO_API_URL": "https://wpbrigade.com", "CERTO_API_TOKEN": "your-api-token" } } } } ```