G
Google Sheets
Read and edit Google Sheets.
·No reviews yet
Share:
About
Auto-generated
Google Sheets is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Google Sheets.
- What does the Google Sheets MCP enable?
- The Google Sheets MCP allows you to programmatically read and edit Google Sheets documents. It integrates Google Sheets functionalities into environments that support Model Context Protocol (MCP).
- How do I authenticate with the Google Sheets MCP?
- This MCP uses OAuth for authentication. You will need to complete an OAuth flow to grant the MCP client access to your Google Sheets data. Specific setup steps depend on your client application.
- Can I use the Google Sheets MCP to create new spreadsheets?
- The available information suggests reading and editing capabilities. While creating new sheets is a common Google Sheets feature, it depends on the specific tools exposed by the MCP implementation whether this function is directly supported.
- Is there a cost associated with using the Google Sheets MCP?
- The MCP itself is community-provided and its use would not incur direct costs. However, standard Google API usage policies and any associated costs from Google Cloud Platform might apply, depending on your usage volume.
- What is a prerequisite for using the Google Sheets MCP?
- A primary prerequisite is having a Google account with access to Google Sheets. Additionally, you will need an MCP client that supports the 'stdio' transport and can handle OAuth authentication flows for Google services.
Install Google Sheets
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"google-sheets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-sheets"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"google-sheets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-sheets"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"google-sheets": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-sheets"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.