What is A modular framework for AI agents to interact with the Cheqd network using the Model Context Protocol.?
The @cheqd/mcp-toolkit is a modular framework built around the Model Context Protocol (MCP) which allows AI agents to interact with the Cheqd network. MCP standardizes AI agent interactions by providing a structured way to handle identity-related workflows. This toolkit enables AI agents to securely manage decentralized identities (DIDs), verifiable credentials, and trust registries, making it an essential component for AI-driven identity systems. This repository allows developers to configure and deploy an MCP server with the available toolkits.
Documentation
Cheqd MCP Toolkit
âšī¸ Overview
The @cheqd/mcp-toolkit is a modular framework built around the Model Context Protocol (MCP) which allows AI agents to interact with the Cheqd network. MCP standardizes AI agent interactions by providing a structured way to handle identity-related workflows. This toolkit enables AI agents to securely manage decentralized identities (DIDs), verifiable credentials, and trust registries, making it an essential component for AI-driven identity systems. This repository allows developers to configure and deploy an MCP server with the available toolkits.
đ Remote MCP Server
For the quickest way to get started, you can connect to our hosted MCP server. Simply add the following configuration to your Claude Desktop or Cursor settings file:
For Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
The remote option requires no local setup and provides immediate access to cheqd identity tools.
Prerequisites
Node.js 20 or higher
pnpm 8 or higher
Basic knowledge of TypeScript and MCP
đĻ Packages# @cheqd/mcp-toolkit
The @cheqd/mcp-toolkit package allows you to configure and host an MCP (Model Context Protocol) server within an environment. It integrates with tools from this repository to provide a customizable infrastructure for managing identity-related operations.
Features:
Configurable MCP server setup
Integration with various tools from this repository
Usage Options## 1. Remote Server (Easiest)
Connect to our hosted MCP server - no local setup required:
The @cheqd/mcp-toolkit-credo package is one of the toolkits that integrate with @openwalletfoundation/credo-ts, allowing an AI agent to manage DIDs and verifiable credentials. It provides tools for:
Issuing and revoking credentials
Schema and credential definition management
DID-based authentication
TRAIN for trust registry verification
đ Environment Variables
TOOLS="credo" # Comma separated list of Tools, as of now only 'credo'
CREDO_PORT="3000" # Port on which the Credo agent will run
CREDO_NAME="faber" # Name of the Credo Agent
CREDO_ENDPOINT="http://faber:3000" # Endpoint which Credo Agent is accessible externally
CREDO_CHEQD_TESTNET_MNEMONIC="your-mnemonic-phrase" # Your Testnet mnemonic phrase
TRAIN_ENDPOINT="https://dev-train.trust-scheme.de/tcr/v1/" # The TRAIN endpoint for verification of trust registry
PORT="5000" # The Port where the Remote MCP Server will run
Developer Options# Development Setup
1. Install pnpm
If you don't already have pnpm installed:
npm install -g pnpm
2. Clone the repository
git clone https://github.com/cheqd/mcp-toolkit.git
cd mcp-toolkit
3. Install dependencies
pnpm install
4. Build the packages
pnpm build
đ Documentation
For comprehensive details on the Cheqd MCP Toolkit, usage examples, and AI agent integrations, please refer to our official documentation: