AI-powered knowledge management platform.
## Guru MCP Server: Knowledge Management The **Guru MCP Server** integrates Guru's knowledge management platform into Google Antigravity, enabling developers to access, search, and manage team knowledge through AI-assisted information retrieval. ### Why Guru MCP? - **Verified Knowledge**: Trust scores and verification workflows - **Browser Extension**: Access knowledge from anywhere on the web - **AI-Powered Search**: Semantic search across all team knowledge - **Collections**: Organize cards into themed collections - **Slack Integration**: Access and share knowledge in Slack ### Key Features #### 1. Card Management ```javascript // Search cards const results = await guru.search({ query: "deployment process", collection: "Engineering", limit: 10 }); // Get card content const card = await guru.getCard({ cardId: results[0].id }); console.log(card.title); console.log(card.content); // HTML content console.log(card.verificationState); console.log(card.lastVerified); // Create card const newCard = await guru.createCard({ preferredPhrase: "API Rate Limits", content: "<p>Our API enforces the following rate limits...</p>", collection: "collection_id", boards: ["board_id"], verifiers: ["user_id"] }); ``` #### 2. Collection and Verification ```javascript // List collections const collections = await guru.listCollections(); // Get collection cards const collectionCards = await guru.listCards({ collection: "Engineering" }); // Verify card await guru.verifyCard({ cardId: card.id, verificationInterval: 90 // days }); // Add card to board await guru.addCardToBoard({ cardId: card.id, boardId: "board_123" }); ``` ### Configuration ```json { "mcpServers": { "guru-kb": { "command": "npx", "args": ["-y", "@anthropic/mcp-guru"], "env": { "GURU_USER_EMAIL": "your-email@company.com", "GURU_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Onboarding**: Access institutional knowledge for new team members. **Support**: Find verified answers to common technical questions. **Documentation**: Maintain living documentation with verification workflows. The Guru MCP Server brings verified team knowledge to your development workflow.
{
"mcpServers": {
"guru-kb": {}
}
}