list_databases tool only lists information_schema #11016
Unanswered
admin-rtwx
asked this question in
Get help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using crewAI to connect to mindsdb MCP server. One agent is able to make a final raw query on my connected postgres table.
But other agent which accepts natural language is not able to list down the databases with list_databases tool. It only prints information_schema.
I used this command to link my postgres table:
CREATE DATABASE my_postgres
WITH ENGINE = 'postgres',
PARAMETERS = {
'host': 'postgres-mindsdb',
'port': 5432,
'user': 'mindsdb',
'password': 'mindsdb',
'database': 'my_postgres'
};
Beta Was this translation helpful? Give feedback.
All reactions