Integrations

Vaks PM · Integration guides · July 2026

Start here. This page is the index of everything Vaks PM connects to. Each integration that requires configuration on the other side — in Entra, GitHub, ServiceNow and so on — has its own step-by-step guide. Integrations configured entirely inside the admin panel are described directly on this page, since there is no second system to coordinate with.

How integrations work

Vaks PM is API-first: the web application consumes the same public REST API that third-party integrations do. Every integration is therefore one of four shapes, and knowing which one you are dealing with tells you where the configuration lives and where to look when it breaks.

Identity, inbound

An external directory tells Vaks PM who exists. Users and agents are created or suspended from outside. Configured on both sides.

Events, outbound

Vaks PM calls out when something happens: webhooks, notification email, audit forwarding to a SIEM. Configured here, received there.

Callbacks, inbound

An external system calls Vaks PM: signed CI results, ticketing connectors, agent registration. Authenticated by shared secret or scoped API key.

Delegated access

A person or an AI assistant acts through the API on a user's behalf, bounded by scopes: API tokens and the MCP connector.

Two rules hold across all of them. Permissions are always enforced server-side — an integration never gains rights the underlying identity does not already have, and scopes only ever narrow them. And every integration is optional: Vaks PM runs fully self-hosted with no outbound dependency, so each one below is something you switch on deliberately.

Before you start

Three things are worth settling before configuring anything, because each has bitten a first-time setup:

Identity & provisioning

Who can sign in, and how accounts are created and retired.

IntegrationWhat it gives youSet up on the far sideGuide
Single sign-on — OIDC ModuleSign-in through Microsoft Entra ID, Google Workspace, Okta, Keycloak or any compliant provider, with optional account creation on first sign-in and group-to-role mapping.App registration, redirect URI, groups claimRead the guide →
Single sign-on — SAML 2.0 ModuleSign-in through any SAML identity provider — Entra, Google Workspace, AD FS, Okta, Keycloak — for organizations that cannot use OIDC.Service-provider metadata, signing certificate, attribute statementsRead the guide →
SCIM 2.0 provisioning ModuleYour directory creates, updates and deactivates users, and keeps teams in step with groups.Provisioning app, tenant URL, bearer tokenRead the guide →
Both sides must agree on one identifier. Accounts are matched on the identity provider's immutable object ID, never on the email address — single sign-on and SCIM both use that same value, so the two converge on one account rather than creating a second. What this does require is that your sign-in assertion actually carries the object ID: with SAML in particular, check that it is not sending the email address as its NameID. Test single sign-on with one pilot user before pointing SCIM at the whole organization, and keep one local administrator able to sign in with a password — the break-glass account.

AI agents

Vaks PM treats AI agents as first-class actors: an agent is an account with a mandatory human owner, a trust level, an explicit capability list, and full audit attribution. These integrations bring agent identities in and verify what they produce.

IntegrationWhat it gives youSet up on the far sideGuide
Agent directories ModuleMirror agent identities from Microsoft Entra Agent ID, or let a platform register its agents by API. Imported agents arrive read-only, owned by a human, and without credentials.App registration with AgentIdentity.Read.All — or nothing at all, for the inbound APIRead the guide →
Agent authentication ModuleHow an activated agent obtains its short-lived token without a distributed secret — federation (the platform signs the token, exchanged per RFC 8693) or a self-rotating machine credential. Covers Kubernetes, Entra (Copilot Studio, Foundry) and GitHub Actions.A declared trusted issuer, or one machine credential issued onceRead the guide →
CI verification ModuleSigned build results corroborate what an agent claims about its own work, so an approval rests on evidence rather than self-attestation.Webhook with an HMAC shared secret, from GitHub or any CI able to sign a payloadRead the guide →
AI assistant connector (MCP) ModuleAn assistant such as Claude reads and updates projects on a user's behalf, bounded by that user's own permissions.OAuth client registration in the assistantRead the guide →

Events & delivery

What Vaks PM sends out when something happens.

IntegrationWhat it gives youSet up on the far sideGuide
WebhooksHMAC-signed HTTP callbacks on task, project and comment events, with retries and a delivery log. A Microsoft Teams card format is built in, for Teams and Power Automate.A receiving endpoint, or a Teams / Power Automate connector URLRead the guide →
Audit forwarding to a SIEMAudit events streamed as syslog (RFC 5424, TCP or TLS), or pulled by your collector from a scoped read-only API.A syslog listener, optionally with mutual TLSRead the guide →
Collaboration spaces ModuleA Microsoft Teams team, Slack channel, or Google Chat space is created automatically when a project starts, with membership kept in sync — three self-service providers, configured independently. Teams' SharePoint files can also be exposed, read-only, to both agents and project members.Per-provider credentials (Entra app · Slack bot token · Google service account)Read the guide →
Document sourcesDocuments living in SharePoint or Google Drive become readable from a project — by AI agents as working context, and by members from the interface. Read-only, live proxy, no copy.Teams identity (SharePoint) · Google service account (Drive)Read the guide →

Tools & workflow

IntegrationWhat it gives youSet up on the far sideGuide
Ticketing connectorsLog time against tickets that live in an external tool such as ServiceNow, without leaving Vaks PM and without importing the tickets as projects.API credentials on the ticketing systemRead the guide →
Public REST APIAnything the web application can do, available to your own scripts and tools. Interactive reference published by the instance itself at /api/docs.See API tokens below

Configured in Admin only

These need no coordination with another system beyond a credential, so they are covered here rather than in a guide of their own.

Outgoing email (SMTP)

Under Admin → Notifications. Supply host, port, encryption and, if the relay requires it, a username and password — the password is encrypted at rest and never displayed again. Anonymous relays are supported: leave the authentication mode unset. Branding (logo, accent colour, sender and reply-to addresses) is configured in the same place, as are quiet hours and digest scheduling.

Press Send test email before relying on it. If your relay filters by source address, allowlist the instance's outbound IP; some providers reject on the envelope sender rather than the credential, which surfaces as an authentication failure that no password change will fix.

API tokens

Two kinds, and the difference matters:

Both are created under Admin → API keys (organization) or in your account options (personal). The secret is shown once. An expiry is mandatory and capped at two years — there are no permanent tokens — and a reminder email goes out 14 days before one lapses. Tokens only ever reach the public API surface; they are rejected on the application's private routes.

Backup alerting

Host-side backup scripts post to a dedicated endpoint so a failed backup raises a critical audit entry, an email to administrators and a webhook. It is authenticated by a shared secret header, configured with the backup scripts themselves — see Operations.

Permissions needed

Which Vaks PM permission gates each integration's configuration screen.

PermissionHeld byCovers
org:manageOrganization administratorsSingle sign-on, SCIM, webhooks, audit forwarding, organization API keys, notifications
agent:manageOrganization administrators, and users holding the orthogonal AI administrator grantAgents, agent directories, CI verification, agent policies
finance:manageFinance rolesRates and budgets, including agent billing rates

The AI administrator grant exists so that whoever runs your AI programme can manage agents end to end without becoming a full administrator. It stacks on any role and is limited to the agent surface — it grants no access to finance, clients or organization settings.

General troubleshooting

Patterns that recur across integrations, worth checking before opening a specific guide:


Related: product & features for what each capability does conceptually · encryption & keys for how integration secrets are protected · operations for day-2 concerns.