Card snapshot
staging.divinci.ai
·
2026-08-08 11:58:46 UTC
·
5c3668dc897f4f155e6795e9810c5a600e4e8e69dda9e75ef2694915836671db
This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.
{
"name": "DiVinci WhiteLabel AI",
"description": "AI-powered assistant with RAG capabilities for knowledge management and conversational AI. Supports chat, document search, and knowledge base queries. Requires Bearer token authentication.",
"url": "https://mcp.divinci.app",
"protocolVersion": "0.3",
"provider": {
"organization": "DiVinci AI",
"url": "https://divinci.ai"
},
"version": "1.0.0",
"documentationUrl": "https://mcp.divinci.app/info",
"supportedInterfaces": [
{
"url": "https://mcp.divinci.app/a2a",
"transport": "JSONRPC"
},
{
"url": "https://mcp.divinci.app/mcp",
"transport": "HTTP+MCP"
}
],
"capabilities": {
"streaming": true,
"pushNotifications": false,
"stateTransitionHistory": true,
"extensions": []
},
"securitySchemes": {
"oauth2": {
"type": "oauth2",
"description": "OAuth 2.1 authorization code + PKCE against mcp.divinci.app.",
"flows": {
"authorizationCode": {
"authorizationUrl": "https://mcp.divinci.app/authorize",
"tokenUrl": "https://mcp.divinci.app/token",
"scopes": {
"chat:read": "Read conversations and transcripts",
"chat:write": "Send messages to an assistant",
"rag:read": "Query knowledge bases",
"rag:write": "Add documents to knowledge bases"
}
}
}
}
},
"security": [
{
"oauth2": [
"chat:read",
"chat:write",
"rag:read"
]
}
],
"defaultInputModes": [
"text"
],
"defaultOutputModes": [
"text"
],
"skills": [
{
"id": "send_message",
"name": "Send Message",
"description": "Send a message to the AI assistant and receive a response",
"tags": [
"chat",
"conversation",
"ai"
],
"examples": [
"What is machine learning?",
"Explain quantum computing"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
},
{
"id": "get_transcript",
"name": "Get Transcript",
"description": "Retrieve a specific conversation transcript by ID",
"tags": [
"transcript",
"history"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
},
{
"id": "list_transcripts",
"name": "List Transcripts",
"description": "List available conversation transcripts",
"tags": [
"transcript",
"history"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
},
{
"id": "search_knowledge",
"name": "Search Knowledge",
"description": "Semantic search across a configured knowledge base",
"tags": [
"rag",
"search",
"knowledge"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
},
{
"id": "list_data_sources",
"name": "List Data Sources",
"description": "List the knowledge bases available to the caller",
"tags": [
"rag",
"knowledge"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
},
{
"id": "get_document",
"name": "Get Document",
"description": "Retrieve a single document from a knowledge base",
"tags": [
"rag",
"knowledge"
],
"inputModes": [
"text"
],
"outputModes": [
"text"
]
}
]
}