Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| gws-path | No | Path to the gws binary. | gws |
| services | No | Comma-separated list of services to expose (e.g., drive,sheets,calendar,docs,gmail). Default is all services. |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| drive_files_list | List files in Google Drive. Supports search queries via the 'q' parameter. Shared drive files are included automatically. |
| drive_files_get | Get a file's metadata by ID. Shared drive files are supported automatically. |
| drive_files_create | Create a new file in Google Drive. Use with bodyParams for metadata and optionally upload a local file. |
| drive_files_copy | Copy a file. Useful for converting formats (e.g. markdown to Google Doc). |
| drive_files_update | Update a file's metadata or content. |
| drive_files_delete | Permanently delete a file. |
| drive_files_export | Export a Google Workspace file (Doc, Sheet, Slide) to a specific format. Returns JSON with export metadata. Use drive_files_download for automatic export with content returned inline. |
| drive_permissions_create | Share a file by creating a permission. |
| sheets_get | Get spreadsheet metadata. |
| sheets_values_get | Read values from a spreadsheet range. |
| sheets_values_update | Write values to a spreadsheet range. |
| sheets_values_append | Append values after the last row of a spreadsheet range. |
| calendar_events_list | List events from a calendar. |
| calendar_events_get | Get a single calendar event by ID. |
| calendar_events_insert | Create a new calendar event. |
| calendar_events_update | Update an existing calendar event. |
| calendar_events_delete | Delete a calendar event. |
| docs_get | Get a Google Doc's content and metadata. |
| docs_create | Create a new empty Google Doc. |
| docs_batchUpdate | Apply updates to a Google Doc (insert text, formatting, etc). |
| gmail_messages_list | List Gmail messages matching a query. |
| gmail_messages_get | Get a single Gmail message by ID. |
| gmail_threads_list | List Gmail threads matching a query. |
| gmail_threads_get | Get a full Gmail thread by ID (all messages in the conversation). |
| drive_files_download | Download a file's content from Google Drive. Returns the text content for text files, or a base64-encoded string for binary files. For Google Docs/Sheets/Slides, exports to a readable format (plain text by default). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |