ἵστωρ Download

What is MCP?

The Model Context Protocol, the open standard that connects AI models to external tools, and the reason a tool written once now works with many apps.

MCP, the Model Context Protocol, is an open standard that connects AI models to external tools: file readers, search engines, databases, anything that can be described as a service. Before it, each tool-to-model connection was custom wiring; after it, a tool written once works with any compliant app. It matters for local AI because the protocol runs on your machine, so a model can act on your files without the data leaving home.

A port for tools.

The problem MCP solves is wiring. Before a standard, every application that wanted to give an agent tools to act with built the connections by hand, so a file reader written for one app was useless in another. The protocol defines the conversation instead: a tool server describes its abilities in a form any compliant app understands, and the app exposes them to the model. The comparison people reach for is a port standard, and it holds: the value is not in any one cable but in everything that becomes pluggable once the socket exists.

What changes for local AI.

The protocol is transport, not a service, so the servers it connects can run on your machine. A local model with local tool servers acts on your documents, your notes and your own services, and the data those tools touch stays where it started. This is the same architecture logic that keeps a local model on your machine and that keeps local retrieval private: the capability grows while the trust model stays yours. It also means the extension point is auditable, because the servers are ordinary programs you chose to install.

What it does not fix.

A protocol that gives a model tools does not make its use of them correct. A model can still call the wrong tool, misread what a tool returned, or write confident claims from a half-glanced result. Grounding stays the real work: answers built from retrieved passages, checked against their sources, refuse to say more than the tool output supports, which is the discipline behind stopping AI from making things up. MCP widens what a model can reach; it does not vouch for what comes back.