productivity
Google Slides MCP Integration for OpenAI Agents SDK
Connect Google Slides to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Slides to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Google Slides MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-google-slides": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=google-slides",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=google-slides --write=deny Why Use KosmoKrator Here
Expose only Google Slides instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Google Slides Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Google Slides integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__google_slides__gslides_list_presentations | google-slides.gslides_list_presentations | Read | List Google Slides presentations from the user's Drive. Returns presentation IDs, titles, and metadata. |
integration__google_slides__gslides_get_presentation | google-slides.gslides_get_presentation | Read | Get full details of a specific Google Slides presentation, including all slides, page elements, and layout information. |
integration__google_slides__gslides_create_presentation | google-slides.gslides_create_presentation | Write | Create a new, blank Google Slides presentation with a given title. |
integration__google_slides__gslides_list_slides | google-slides.gslides_list_slides | Read | List all slides in a Google Slides presentation. Returns slide object IDs and thumbnails. |
integration__google_slides__gslides_get_slide | google-slides.gslides_get_slide | Read | Get details of a specific slide (page) in a Google Slides presentation, including all page elements and their properties. |
integration__google_slides__gslides_create_slide | google-slides.gslides_create_slide | Write | Add a new slide to an existing Google Slides presentation. Optionally add text boxes and shapes to the new slide. |
integration__google_slides__gslides_get_current_user | google-slides.gslides_get_current_user | Read | Get the authenticated Google user's profile information (display name, email, photo). |