File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,26 +22,26 @@ The server provides a demonstration prompt:
22
22
The server offers six core tools:
23
23
24
24
#### Query Tools
25
- - ` read-query `
25
+ - ` read_query `
26
26
- Execute SELECT queries to read data from the database
27
27
- Input:
28
28
- ` query ` (string): The SELECT SQL query to execute
29
29
- Returns: Query results as array of objects
30
30
31
- - ` write-query `
31
+ - ` write_query `
32
32
- Execute INSERT, UPDATE, or DELETE queries
33
33
- Input:
34
34
- ` query ` (string): The SQL modification query
35
35
- Returns: ` { affected_rows: number } `
36
36
37
- - ` create-table `
37
+ - ` create_table `
38
38
- Create new tables in the database
39
39
- Input:
40
40
- ` query ` (string): CREATE TABLE SQL statement
41
41
- Returns: Confirmation of table creation
42
42
43
43
#### Schema Tools
44
- - ` list-tables `
44
+ - ` list_tables `
45
45
- Get a list of all tables in the database
46
46
- No input required
47
47
- Returns: Array of table names
@@ -53,7 +53,7 @@ The server offers six core tools:
53
53
- Returns: Array of column definitions with names and types
54
54
55
55
#### Analysis Tools
56
- - ` append-insight `
56
+ - ` append_insight `
57
57
- Add new business insights to the memo resource
58
58
- Input:
59
59
- ` insight ` (string): Business insight discovered from data analysis
You can’t perform that action at this time.
0 commit comments