KosmoKrator

productivity

Beamer MCP, CLI, and Lua Integration for AI Agents

Beamer integration docs for AI agents: MCP gateway setup, Beamer CLI commands, Lua API reference, credentials, and function schemas.

Beamer for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
beamer.beamer_list_posts Read read 3 List changelog posts and announcements from Beamer. Supports pagination with limit and page, and filtering by status (published, draft, scheduled).
beamer.beamer_get_post Read read 1 Retrieve a single Beamer changelog post by its ID. Returns the full post including title, content, date, category, and metadata.
beamer.beamer_create_post Write write 4 Create a new changelog post or announcement in Beamer. Provide a title and content (HTML supported). Optionally set a category and scheduled publication date.
beamer.beamer_list_comments Read read 1 List all comments on a specific Beamer post. Returns comment text, author info, and timestamps.
beamer.beamer_get_current_user Read read 0 Get the profile of the currently authenticated Beamer user. Returns name, email, role, and account details. Useful for verifying credentials.
beamer.beamer_list_categories Read read 0 List all post categories in your Beamer account. Returns category IDs and names for use when creating or filtering posts.
beamer.beamer_api_get Read read 2 Call any Beamer GET API endpoint relative to the configured base URL.
beamer.beamer_api_post Write write 2 Call any Beamer POST API endpoint relative to the configured base URL.
beamer.beamer_api_put Write write 2 Call any Beamer PUT API endpoint relative to the configured base URL.
beamer.beamer_api_delete Write write 2 Call any Beamer DELETE API endpoint relative to the configured base URL.