Skip to content

Commit

Permalink
Merge pull request #35 from benborla/main
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellatman authored Dec 11, 2024
2 parents 865c140 + 8cff5a1 commit 833acc3
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
13 changes: 11 additions & 2 deletions packages/package-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,15 @@
"sourceUrl": "https://github.com/hdresearch/mcp-shell",
"homepage": "https://github.com/hdresearch/mcp-shell",
"license": "MIT",
"runtime": "node "
"runtime": "node"
},
{
"name": "@benborla29/mcp-server-mysql",
"description": "An MCP server for interacting with MySQL databases",
"vendor": "Ben Borla (https://benborla.dev)",
"sourceUrl": "https://github.com/benborla/mcp-server-mysql",
"homepage": "https://github.com/benborla/mcp-server-mysql",
"license": "MIT",
"runtime": "node"
}
]
]
24 changes: 24 additions & 0 deletions src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,29 @@ export const packageHelpers: PackageHelpers = {
required: true
}
}
},
'@benborla29/mcp-server-mysql': {
requiredEnvVars: {
MYSQL_HOST: {
description: 'MySQL Host address',
required: true,
},
MYSQL_PORT: {
description: 'MySQL port defaults to 3306',
required: false,
},
MYSQL_USER: {
description: 'MySQL username',
required: true,
},
MYSQL_PASS: {
description: 'MySQL password',
required: true,
},
MYSQL_DB: {
description: 'MySQL database to use',
required: false,
}
}
}
};

0 comments on commit 833acc3

Please sign in to comment.