social
Bluesky MCP, CLI, and Lua Integration for AI Agents
Bluesky integration docs for AI agents: MCP gateway setup, Bluesky CLI commands, Lua API reference, credentials, and function schemas.
6 functions 5 read 1 write Manual OAuth token auth
Bluesky 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.
Machine-Readable Metadata
- integration_slug
bluesky- route_slug
bluesky- package
bluesky- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Bluesky CLIHeadless setup and direct function calls. Bluesky MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Bluesky MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Bluesky.
Claude Code Bluesky MCP setup for Claude Code. Cursor Bluesky MCP setup for Cursor. Codex Bluesky MCP setup for Codex. OpenAI Agents Bluesky MCP setup for OpenAI Agents SDK. Claude Agent SDK Bluesky MCP setup for Claude Agent SDK. Vercel AI SDK Bluesky MCP setup for Vercel AI SDK. LangChain Bluesky MCP setup for LangChain. LangGraph Bluesky MCP setup for LangGraph. CrewAI Bluesky MCP setup for CrewAI. MCP clients Bluesky MCP setup for Generic MCP Clients.
Bluesky CLI Matrix
Use these pages for direct Bluesky CLI workflows in scripts, CI, cron, and agent wrappers.
CI Bluesky CLI for CI. Cron Jobs Bluesky CLI for cron jobs. Shell Scripts Bluesky CLI for shell scripts. Headless Automation Bluesky CLI for headless automation. Coding Agents Bluesky CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
bluesky.bluesky_create_post | Write write | 4 | Create a new post on Bluesky. The post text is required and supports facets (mentions, links, tags) if provided. |
bluesky.bluesky_get_profile | Read read | 1 | Get the public profile of a Bluesky user. Provide a handle (e.g. "alice.bsky.social") or DID. |
bluesky.bluesky_list_followers | Read read | 3 | List the followers of a Bluesky account. Returns follower profiles with handles, display names, and avatars. |
bluesky.bluesky_list_following | Read read | 3 | List the accounts that a Bluesky user follows. Returns profiles with handles, display names, and avatars. |
bluesky.bluesky_search_posts | Read read | 3 | Search for posts on Bluesky. Supports full-text search queries. Returns matching posts with author, text, and timestamps. |
bluesky.bluesky_get_current_user | Read read | 0 | Get the authenticated user's own Bluesky profile. No parameters required — uses the configured account. |