Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANTHROPIC_API_KEY | Yes | Your Anthropic API access key |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| summarize_csv_file | Summarise a CVS file by reporting its number of rows and columns. Args: filename (str): Name of the CSV file in the /data directory. Returns: str: A string describing the file's dimensions. |
| summarize_parquet_file | Summarise a Parquet file by reporting its number of rows and columns. Args: filename (str): Name of the Parquet file in the /data directory. Returns: str: A string describing the file's dimensions. |