The "USB-C" for Artificial Intelligence: Standardizing how agents connect to data and tools.
Traditionally, connecting an AI to a tool (like your Calendar or Zotero) required writing custom code for every single interaction. This "glue code" is fragile and unscalable.
MCP (Model Context Protocol) is an open standard that abstracts the connection.
Metaphor: Instead of soldering a different wire for every device (API Glue), we just plug in a standardized cable (MCP).
We use Docker to manage these connections locally, keeping your data secure.
We configure an mcp_config.json file to tell our AI where to look.
{
"mcpServers": {
"obsidian": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/obsidian"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"]
}
}
}
Once connected, you simply prompt naturally:
"Search my Obsidian vault for 'GeoAI' and verify any external claims using Brave Search."
The AI automatically selects the correct tool (Obsidian MCP) and the correct verifier (Brave MCP) without you writing a single line of Python.
For specialized research specific to Dr. Sounny's work, we can build custom servers.