Knowledge management for growing teams.
## Tettra MCP Server: Company Wiki The **Tettra MCP Server** integrates Tettra's knowledge management platform into Google Antigravity, enabling developers to build and maintain company wikis through AI-assisted documentation workflows. ### Why Tettra MCP? - **AI-Powered Search**: Find answers with smart search and suggestions - **Knowledge Requests**: Request documentation from team members - **Verification**: Keep content fresh with verification workflows - **Slack Integration**: Answer questions directly in Slack - **Analytics**: Track content usage and gaps ### Key Features #### 1. Page Management ```javascript // Create page const page = await tettra.createPage({ title: "Onboarding Checklist", content: "# New Developer Onboarding\n\n## Day 1\n...", categoryId: "category_123", ownerId: "user_456" }); // Search pages const results = await tettra.search({ query: "deployment process", type: "page" }); // Get page content const pageContent = await tettra.getPage({ id: page.id }); // Update page await tettra.updatePage({ id: page.id, content: updatedContent }); ``` #### 2. Categories and Verification ```javascript // List categories const categories = await tettra.listCategories(); // Create category const category = await tettra.createCategory({ name: "Engineering", description: "Engineering team documentation" }); // Get category pages const pages = await tettra.getCategoryPages({ categoryId: category.id }); // Mark page as verified await tettra.verifyPage({ id: page.id, verifiedBy: "user_123" }); // Request knowledge await tettra.createKnowledgeRequest({ question: "How do we handle database migrations?", assigneeId: "user_456" }); ``` ### Configuration ```json { "mcpServers": { "tettra": { "command": "npx", "args": ["-y", "@anthropic/mcp-tettra"], "env": { "TETTRA_API_KEY": "your-api-key", "TETTRA_TEAM": "your-team" } } } } ``` ### Use Cases **Company Wiki**: Build centralized knowledge bases for organizations. **Onboarding**: Create verified onboarding documentation. **Knowledge Gaps**: Identify and fill documentation gaps with requests. The Tettra MCP Server brings intelligent wikis to your development workflow.
{
"mcpServers": {
"tettra": {}
}
}