Database Updater MCP Server

by AnuragRai017
Verified

update_database

Update the database from a CSV or Excel file

Input Schema

NameRequiredDescriptionDefault
connectionStringYesConnection string for the database
databaseTypeYesType of database (e.g., PostgreSQL, MySQL, MongoDB, SQLite)
filePathYesPath to the CSV or Excel file
tableNameYesName of the table to update

Input Schema (JSON Schema)

{ "properties": { "connectionString": { "description": "Connection string for the database", "type": "string" }, "databaseType": { "description": "Type of database (e.g., PostgreSQL, MySQL, MongoDB, SQLite)", "type": "string" }, "filePath": { "description": "Path to the CSV or Excel file", "type": "string" }, "tableName": { "description": "Name of the table to update", "type": "string" } }, "required": [ "filePath", "databaseType", "connectionString", "tableName" ], "type": "object" }

You must be authenticated.

Other Tools