Kozocom MCP server
Most developer tooling work still happens through a UI a human drives. Terra MCP server moves it into the conversation instead. Kozocom MCP server.
Read/write access to your Google Drive and Sheets. OAuth + PKCE login — only the public client ID ships in npm, consent happens in browser, token is cached and auto-refreshed.
The server publishes 14 tools. What each one is for:
google_auth_status — show signed-in account, granted scopes, token expirydrive_list_files — list / search files (Drive q query, pagination)drive_get_file — get file metadata by IDdrive_download_file — download or export content (Google-native files → csv/txt/pdf/…)drive_create_folder — create a folderdrive_upload_file — upload inline text or a local filedrive_update_file — rename, move, or replace contentdrive_copy_file — duplicate a filedrive_delete_file — trash (default) or permanently deletesheets_create_spreadsheet — create a spreadsheetsheets_get_spreadsheet — list tabs and their dimensionssheets_read_range — read one A1 range, or many at once (pass an array of ranges)The server ships on npm as skills, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Configuration is passed through the environment: GOOGLE_OAUTH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Terra's toolset — google_auth_status, drive_list_files, drive_get_file and 11 more — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| google_auth_status | show signed-in account, granted scopes, token expiry |
| drive_list_files | list / search files (Drive q query, pagination) |
| drive_get_file | get file metadata by ID |
| drive_download_file | download or export content (Google-native files → csv/txt/pdf/…) |
| drive_create_folder | create a folder |
| drive_upload_file | upload inline text or a local file |
| drive_update_file | rename, move, or replace content |
| drive_copy_file | duplicate a file |
| drive_delete_file | trash (default) or permanently delete |
| sheets_create_spreadsheet | create a spreadsheet |
| sheets_get_spreadsheet | list tabs and their dimensions |
| sheets_read_range | read one A1 range, or many at once (pass an array of ranges) |
| sheets_write_range | overwrite values in one A1 range, or many at once (pass data) |
| sheets_append_rows | append rows after the last row of a table |
{
"mcpServers": {
"terra": {
"command": "npx",
"args": ["-y", "skills"],
"env": {
"GOOGLE_OAUTH_TOKEN": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| GOOGLE_OAUTH_TOKEN | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.