loading…
Search for a command to run...
loading…
Credential Manager - MCP server providing AI-powered tools and automation by MEOK AI Labs
Credential Manager - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for credential manager mcp operations
Credential Manager MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
issue_credential |
Issue a verifiable credential with claims, signature, and expiry. Claims should |
verify_credential |
Verify a credential's validity — checks existence, signature, expiry, and revoca |
revoke_credential |
Revoke a credential. Adds to revocation list and marks as inactive. |
list_credentials |
List credentials with optional filters by subject and type. |
audit_credential_usage |
Get audit statistics on credential issuance, verification, and revocation. |
pip install meok-credential-manager-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"credential-manager": {
"command": "python",
"args": ["-m", "meok_credential_manager_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"credential-manager-mcp": {
"command": "npx",
"args": []
}
}
}