Paradym MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Paradym MCP or direct API to issue credentials, verify proofs, manage credential lifecycles, and automate trust workflows through natural language.

Paradym logoParadym
Api Key

Paradym is an API-first platform for issuing, verifying, and managing verifiable credentials. It streamlines credential workflows using standards like SD-JWT VCs and AnonCreds.

69 Tools

Try Paradym now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Paradym
Try asking
TOOLS

Supported Tools

Every Paradym action and event your agent gets out of the box.

Activate Certificate

Tool to activate a certificate for use in a project.

Archive AnonCreds Credential Template

Tool to archive an AnonCreds credential template in a project.

Archive mDoc Credential Template

Tool to archive an mDoc credential template.

Archive Presentation Template

Tool to archive a presentation template in a project.

Archive SD-JWT VC Credential Template

Tool to archive an SD-JWT VC credential template in a project.

Create AnonCreds Credential Template

Tool to create a new AnonCreds credential template.

Create Certificate

Tool to create a new self-signed X.

Create DIDComm Connection Invitation

Tool to create a DIDComm connection invitation.

Create DIDComm Issuance Offer

Tool to create a DIDComm credential issuance offer.

Create OpenID4VC Credential Offer

Tool to create an OpenID4VC credential offer.

Create OpenID4VC Verification Request

Tool to create an OpenID4VC verification request.

Create Presentation Template

Tool to create a new presentation template.

Create Project Webhook

Tool to create a new webhook for a project.

Create SD-JWT VC Credential Template

Tool to create a new SD-JWT VC credential template with selective disclosure capabilities.

Create Trusted Entity

Tool to create a new trusted entity for a project.

Deactivate Certificate

Tool to deactivate a certificate in a project.

Delete DIDComm Connection

Tool to delete a DIDComm connection from a project.

Delete DIDComm Invitation

Tool to delete a DIDComm invitation from a project.

Delete Trusted Entity

Tool to delete a trusted entity from a project.

Delete Project Webhook

Tool to delete a webhook endpoint from a project.

Get AnonCreds Credential Template

Tool to retrieve a specific AnonCreds credential template by ID.

Get AnonCreds Credential Template JSON Schema

Tool to retrieve the JSON schema for an AnonCreds credential template.

Get DIDComm Connection

Tool to retrieve a specific DIDComm connection by ID.

Get DIDComm Connections

Tool to retrieve a list of DIDComm connections for a project.

Get DIDComm Invitation

Tool to retrieve a specific DIDComm invitation by ID.

Get DIDComm Issuance Session

Tool to retrieve a specific DIDComm issuance session by ID.

Get DIDs

Tool to retrieve a list of Decentralized Identifiers (DIDs) for a specific project.

Get mDoc Credential Template

Tool to retrieve a specific mDoc credential template by ID.

Get mDoc Credential Template JSON Schema

Tool to retrieve the JSON schema for an mDoc credential template.

Get OpenID4VC Issuance Session

Tool to retrieve a specific OpenID4VC issuance session by ID.

Get OpenID4VC Verification Session

Tool to retrieve a specific OpenID4VC verification session by ID.

Get Presentation Template

Tool to retrieve a specific presentation template by ID.

Get Presentation Templates

Tool to retrieve a list of presentation templates for a project.

Get Project Members

Tool to retrieve a list of project members.

Get Project Profile

Tool to retrieve the default profile for a project.

Get Projects

Tool to retrieve a list of all projects accessible to the authenticated user.

Get Project Webhooks

Tool to retrieve a list of webhooks configured for a specific project.

Get SD-JWT VC Credential Template

Tool to retrieve a specific SD-JWT VC credential template by ID.

Get SD-JWT VC Credential Template JSON Schema

Tool to retrieve the JSON schema for an SD-JWT VC credential template.

Get Trusted Entities

Tool to retrieve trusted entities for a specific project.

Get Trusted Entity

Tool to retrieve a specific trusted entity by ID.

Issue Direct SD-JWT VC

Tool to directly issue an SD-JWT VC credential without exchange protocol.

List AnonCreds Credential Templates

Tool to retrieve all AnonCreds credential templates for a project.

List Certificates

Tool to retrieve all X.

List Certificate Signing Requests

Tool to retrieve all certificate signing requests for a project.

List DIDComm Invitations

Tool to retrieve all DIDComm invitations for a project.

List DIDComm Issuance Offers

Tool to list all DIDComm issuance offers within a project.

List DIDComm Mediator Connections

Tool to retrieve connections for a DIDComm mediator.

List DIDComm Mediators

Tool to retrieve all DIDComm mediators for a project.

List DIDComm Verification Requests

Tool to list all DIDComm verification sessions for a project.

List Issued Credentials

Tool to list metadata for all issued credentials within a project.

List mDoc Credential Templates

Tool to retrieve all mDoc credential templates for a project.

List OpenID4VC Issuance Sessions

Tool to retrieve all OpenID4VC issuance sessions for a project.

List OpenID4VC Verification Sessions

Tool to retrieve all OpenID4VC verification sessions for a project.

List SD-JWT VC Credential Templates

Tool to retrieve all SD-JWT VC credential templates for a project.

Receive DIDComm Invitation

Tool to receive and process an external DIDComm invitation.

Revoke Certificate

Tool to revoke a certificate in a project.

Send DIDComm Basic Message

Tool to send a basic DIDComm message to a connection.

Send Custom DIDComm Message

Tool to send a custom DIDComm message to a connection.

Unarchive AnonCreds Credential Template

Tool to unarchive an archived AnonCreds credential template.

Unarchive mDoc Credential Template

Tool to unarchive an archived mDoc credential template.

Unarchive SD-JWT VC Credential Template

Tool to unarchive an archived SD-JWT VC credential template.

Update DIDComm Connection

Tool to update a DIDComm connection.

Update mDoc Credential Template

Tool to update an existing mDoc credential template.

Update Presentation Template

Tool to update an existing presentation template.

Update Project

Tool to update an existing project's name and verification data access settings.

Update Project Profile

Tool to update the default profile for a project.

Update SD-JWT VC Credential Template

Tool to update an existing SD-JWT VC credential template.

Update Trusted Entity

Tool to update an existing trusted entity in a project.

SETUP GUIDE

Connect Paradym MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Issue a verifiable credential for Jane Doe with email jane.doe@example.com' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Paradym API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Paradym Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Issue a verifiable credential for Jane Doe with email jane.doe@example.com'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Paradym actions with your Agent

Why Use Composio?

AI Native Paradym Integration

  • Supports both Paradym MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for issuing, verifying, and managing verifiable credentials

Managed Auth

  • Built-in API key management with secure storage and rotation
  • Central place to manage, scope, and revoke Paradym API access
  • Per user and per environment credentials without exposing secrets in code

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Paradym
  • Scoped, least privilege access to credentials and verification resources
  • Full audit trail of agent actions for compliance and review
FAQ

Frequently asked questions

Yes, Paradym requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Paradym.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Paradym tool your agent needs.Free to start.

Start building