MCP (Model Context Protocol)
An open protocol for connecting AI models to external data sources and tools, enabling LLMs to access real-time information and perform actions.
Infrastructure
Model Context Protocol (MCP) is an open standard for connecting AI models to data sources and tools through a unified interface.
Architecture
┌─────────────┐ MCP ┌──────────────┐ ┌─────────────┐
│ │◄─────────────►│ │◄────►│ Data │
│ AI Model │ │ MCP Server │ │ Source │
│ (Claude) │ │ │ │ (DB, API) │
└─────────────┘ └──────────────┘ └─────────────┘
TrustGraph MCP
// TrustGraph as MCP server
import { MCPServer } from "@trustgraph/mcp";
const server = new MCPServer({
name: "trustgraph",
version: "1.0.0",
capabilities: {
resources: true, // Expose Knowledge Graph
tools: true, // Expose query tools
prompts: true // Expose prompt templates
}
});
// Claude can now query TrustGraph directly
// "What does our Knowledge Graph say about Company X?"
See Also
Examples
- •MCP server providing database access to Claude
- •TrustGraph MCP integration for Knowledge Graph queries