Knowledge hub built for modern teams.
## Slab MCP Server: Team Knowledge Hub The **Slab MCP Server** integrates Slab's knowledge hub into Google Antigravity, enabling developers to create, organize, and discover team knowledge through AI-assisted documentation workflows. ### Why Slab MCP? - **Beautiful Editor**: Rich editor with markdown shortcuts and embeds - **Topics**: Organize posts into hierarchical topics - **Unified Search**: Search across Slab and connected integrations - **Insights**: See what content is trending and needs updates - **Integrations**: Connect with GitHub, Slack, and other tools ### Key Features #### 1. Post Management ```javascript // Create post const post = await slab.createPost({ title: "Deployment Process", content: "# Deployment Process\n\n## Prerequisites\n...", topicId: "topic_123", visibility: "team" }); // Search posts const results = await slab.search({ query: "deployment kubernetes", type: "post", limit: 10 }); // Get post content const postContent = await slab.getPost({ id: post.id }); // Update post await slab.updatePost({ id: post.id, content: updatedContent, changelog: "Added troubleshooting section" }); ``` #### 2. Topics and Organization ```javascript // List topics const topics = await slab.listTopics({ parentId: null // Root topics }); // Create topic const topic = await slab.createTopic({ name: "Engineering", description: "Engineering team documentation", parentId: "parent_topic_id" }); // Get topic posts const posts = await slab.getTopicPosts({ topicId: topic.id, sort: "updated" }); // Pin post to topic await slab.pinPost({ postId: post.id, topicId: topic.id }); ``` ### Configuration ```json { "mcpServers": { "slab": { "command": "npx", "args": ["-y", "@anthropic/mcp-slab"], "env": { "SLAB_API_TOKEN": "your-api-token", "SLAB_TEAM_DOMAIN": "your-team.slab.com" } } } } ``` ### Use Cases **Engineering Wiki**: Build comprehensive engineering documentation. **Onboarding**: Create onboarding materials for new team members. **Process Documentation**: Document team processes and best practices. The Slab MCP Server brings beautiful knowledge management to your workflow.
{
"mcpServers": {
"slab": {}
}
}