Google Drive MCP Server
Provides full calendar management: list calendars, create/update/delete events, and integrates Google Meet for video conferencing.
Allows surgical text insertion/deletion, table management, image embedding, comments, and rich formatting in Google Docs documents.
Provides comprehensive file management for Google Drive, including creating, updating, deleting, renaming, moving, copying, uploading, downloading files and folders, advanced search, and shared drives support.
Integrates Google Meet video conferencing links into Google Calendar events for seamless meeting scheduling.
Enables creation and updates of Google Sheets, including modifying cells and ranges with data.
Supports creation of Google Slides presentations with slides outlining milestones, features, and timelines.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Drive MCP ServerSearch for files named 'budget' in Drive."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Images MCP
An MCP server for generating and editing images using Google Gemini. Works with Claude Desktop, Claude Code, and any MCP client.
What it does
Generate images from text prompts
Edit images with instructions (style transfer, background removal, modifications)
Save to local disk or Google Drive
Multiple aspect ratios, resolutions, and models
Related MCP server: MCP Google Suite
Setup
1. Create Google Cloud OAuth credentials (one-time, ~5 minutes)
Go to Google Cloud Console
Create a new project (or use an existing one)
Enable the Generative Language API:
Go to APIs & Services → Library
Search for "Generative Language API"
Click Enable
Enable the Google Drive API (optional, for saving images to Drive):
Search for "Google Drive API" in the library
Click Enable
Configure the OAuth consent screen:
Go to APIs & Services → OAuth consent screen
Choose External user type
Fill in the app name (e.g., "Images MCP") and your email
Add scopes:
generative-languageanddrive.fileAdd your email as a test user
Save
Create OAuth credentials:
Go to APIs & Services → Credentials
Click Create Credentials → OAuth client ID
Choose Desktop app as the application type
Give it a name (e.g., "Images MCP")
Click Create
Copy the Client ID and Client Secret
2. Install
git clone https://github.com/itayshmool/images-mcp.git
cd images-mcp
npm install
npm run build3. Sign in with Google
GOOGLE_CLIENT_ID="your-client-id" \
GOOGLE_CLIENT_SECRET="your-client-secret" \
npm run authYour browser will open for Google sign-in. After signing in, tokens are saved locally at ~/.config/images-mcp/tokens.json.
4. Add to your MCP client
Claude Code
Add to ~/.claude/settings.json:
{
"mcpServers": {
"images-mcp": {
"command": "node",
"args": ["/path/to/images-mcp/dist/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"images-mcp": {
"command": "node",
"args": ["/path/to/images-mcp/dist/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Tools
generateImage
Generate an image from a text prompt.
Parameter | Required | Default | Description |
prompt | Yes | — | Text description of the image |
model | No | nano-banana-2 |
|
aspectRatio | No | 1:1 | 1:1, 16:9, 9:16, 4:3, 3:4, etc. |
resolution | No | 1K | 512, 1K, 2K, or 4K |
saveTo | No | local |
|
localPath | No | system temp | Directory to save to |
fileName | No | auto | Output file name |
editImage
Edit an existing image with a text instruction.
Parameter | Required | Default | Description |
prompt | Yes | — | Edit instruction |
sourceImagePath | No | — | Local path to source image |
sourceDriveFileId | No | — | Google Drive file ID of source image |
model | No | nano-banana-2 |
|
saveTo | No | local |
|
Provide either sourceImagePath or sourceDriveFileId.
Environment variables
Variable | Required | Description |
GOOGLE_CLIENT_ID | Yes | OAuth client ID from Google Cloud Console |
GOOGLE_CLIENT_SECRET | Yes | OAuth client secret from Google Cloud Console |
IMAGES_MCP_TOKEN_PATH | No | Custom path for saved tokens (default: |
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itayshmool/images-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server