bookmarks
Raindrop.io MCP Integration for OpenAI Agents SDK
Connect Raindrop.io to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Raindrop.io 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.
Raindrop.io MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-raindrop": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=raindrop",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=raindrop --write=deny Why Use KosmoKrator Here
Expose only Raindrop.io 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.
Raindrop.io Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Raindrop.io integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__raindrop__raindrop_list_bookmarks | raindrop.raindrop_list_bookmarks | Read | List bookmarks from Raindrop.io. Optionally filter by collection or search query. Returns paginated results with bookmark details. |
integration__raindrop__raindrop_get_bookmark | raindrop.raindrop_get_bookmark | Read | Get full details of a single bookmark by its ID, including title, URL, tags, excerpt, and metadata. |
integration__raindrop__raindrop_create_bookmark | raindrop.raindrop_create_bookmark | Write | Save a new bookmark to Raindrop.io. Provide a URL and optionally set the title, tags, collection, and description. |
integration__raindrop__raindrop_update_bookmark | raindrop.raindrop_update_bookmark | Write | Update an existing bookmark in Raindrop.io. Provide the bookmark ID and the fields to change (title, URL, tags, collection, description, etc.). |
integration__raindrop__raindrop_list_collections | raindrop.raindrop_list_collections | Read | List all bookmark collections (folders) from Raindrop.io. Returns collection names, IDs, and counts. |
integration__raindrop__raindrop_get_collection | raindrop.raindrop_get_collection | Read | Get details of a specific collection by ID, including its name, color, icon, and bookmark count. |
integration__raindrop__raindrop_get_current_user | raindrop.raindrop_get_current_user | Read | Get the authenticated Raindrop.io user's profile — name, email, subscription plan, and storage usage. |