MindsDB integrates with numerous data sources, including databases, vector stores, and applications, making data available to AI models by connecting data sources to MindsDB.
MindsDB supports Model Context Protocol (MCP)MindsDB is an MCP server that enables your MCP applications to answer questions over large-scale federated data. Learn more here.
This section contains instructions on how to connect data sources to MindsDB.Note that MindsDB doesn’t store or copy your data. Instead, it fetches data directly from your connected sources each time you make a query, ensuring that any changes to the data are instantly reflected. This means your data remains in its original location, and MindsDB always works with the most up-to-date information.
Metadata about data handlers and data sourcesData handlers represent a raw implementation of the integration between MindsDB and a data source.Here is how you can query for all the available data handlers used to connect data sources to MindsDB.
Copy
Ask AI
SELECT *FROM information_schema.handlersWHERE type = 'data';
Or, alternatively:
Copy
Ask AI
SHOW HANDLERSWHERE type = 'data';
And here is how you can query for all the created AI engines: