@launchframe/mcp 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tools/cli.js CHANGED
@@ -132,7 +132,7 @@ export function registerCliTools(server) {
132
132
  return { content: [{ type: 'text', text: error.message }] };
133
133
  }
134
134
  });
135
- server.tool('cli_database_query', 'Execute a SQL query against the local (or remote) database and return results. Use for SELECT queries, schema inspection, or data checks. When remote=true, will prompt for confirmation before touching production.', {
135
+ server.tool('cli_database_query', 'Execute a SQL query against the local (or remote) database and return results. Use for SELECT queries, schema inspection, or data checks. When remote=true, will prompt for confirmation before touching production. Call database_schema first if you need to know what tables/columns exist.', {
136
136
  projectPath: z.string().describe('Absolute path to the LaunchFrame project root'),
137
137
  sql: z.string().describe('SQL to execute (e.g., "SELECT * FROM users LIMIT 10;")'),
138
138
  remote: z.boolean().optional().describe('If true, query the production database via SSH instead of local. Requires confirmation.'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@launchframe/mcp",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "LaunchFrame MCP Server — knowledge tools for AI agents building LaunchFrame projects",
5
5
  "bin": {
6
6
  "launchframe-mcp": "dist/index.js"