Skip to content

Commit dedb75f

Browse files
docs: add csv_tool to Available Tools table in README
Fixes aden-hive#1581 Added the following csv_tool functions to the Available Tools table: - csv_read: Read a CSV file and return its contents - csv_write: Write data to a new CSV file - csv_append: Append rows to an existing CSV file - csv_info: Get metadata about a CSV file - csv_sql: Query a CSV file using SQL (DuckDB) Also updated the Project Structure section to include csv_tool directory. Co-Authored-By: Himanshu Jha <jhahimanshu653@gmail.com>
1 parent f30f42a commit dedb75f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tools/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ python mcp_server.py
7575
| `web_search` | Search the web (Google or Brave, auto-detected) |
7676
| `web_scrape` | Scrape and extract content from webpages |
7777
| `pdf_read` | Read and extract text from PDF files |
78+
| `csv_read` | Read a CSV file and return its contents |
79+
| `csv_write` | Write data to a new CSV file |
80+
| `csv_append` | Append rows to an existing CSV file |
81+
| `csv_info` | Get metadata about a CSV file |
82+
| `csv_sql` | Query a CSV file using SQL (DuckDB) |
7883

7984
## Project Structure
8085

@@ -96,7 +101,8 @@ tools/
96101
│ │ └── execute_command_tool.py
97102
│ ├── web_search_tool/
98103
│ ├── web_scrape_tool/
99-
│ └── pdf_read_tool/
104+
│ ├── pdf_read_tool/
105+
│ └── csv_tool/
100106
├── tests/ # Test suite
101107
├── mcp_server.py # MCP server entry point
102108
├── README.md

0 commit comments

Comments
 (0)