Created a MCP Server that connects to databases(currently sqlite, mysql) and perform queries on them automatically with natural language.\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\ Usage with VS Code\u003cbr\u003e\u003cbr\u003e\
For Mysql\
"mcp": {\
"inputs": [],\
"servers": {\
"mysql": {\
"command": "node",\
"args": [\
"absolute/path/to/index.js", \
"--mysql",\
"--host","host",\
"--database","database",\
"--user","user",\
"--password","password",\
]\
}\
}\
}\
\
For Sqlite\
"mcp": {\
"inputs": [],\
"servers": {\
"sqlite": {\
"command": "node",\
"args": [\
"absolute/path/to/index.js", \
"absolute/path/to/database.db",\
]\
}\
}\
}\
\