marketing
Beamer MCP Integration for OpenAI Agents SDK
Connect Beamer to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Beamer 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.
Beamer MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-beamer": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=beamer",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=beamer --write=deny Why Use KosmoKrator Here
Expose only Beamer 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.
Beamer Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Beamer integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__beamer__beamer_list_posts | beamer.beamer_list_posts | Read | List changelog posts and announcements from Beamer. Supports pagination with limit and page, and filtering by status (published, draft, scheduled). |
integration__beamer__beamer_get_post | beamer.beamer_get_post | Read | Retrieve a single Beamer changelog post by its ID. Returns the full post including title, content, date, category, and metadata. |
integration__beamer__beamer_create_post | beamer.beamer_create_post | Write | Create a new changelog post or announcement in Beamer. Provide a title and content (HTML supported). Optionally set a category and scheduled publication date. |
integration__beamer__beamer_list_comments | beamer.beamer_list_comments | Read | List all comments on a specific Beamer post. Returns comment text, author info, and timestamps. |
integration__beamer__beamer_get_current_user | beamer.beamer_get_current_user | Read | Get the profile of the currently authenticated Beamer user. Returns name, email, role, and account details. Useful for verifying credentials. |
integration__beamer__beamer_list_categories | beamer.beamer_list_categories | Read | List all post categories in your Beamer account. Returns category IDs and names for use when creating or filtering posts. |