← Back to Skills Marketplace
pvoo

Guru MCP

by pvoo · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2240
Downloads
2
Stars
3
Active Installs
1
Versions
Install in OpenClaw
/install guru-mcp
Description
Access Guru knowledge base via MCP - ask AI questions, search documents, create drafts, and update cards. Connects to all your Guru sources including Slack, Drive, Confluence, and SharePoint.
README (SKILL.md)

Guru MCP

Access your Guru knowledge base via the official MCP server. Ask AI-powered questions, search documents, create drafts, and update cards.

Features

  • AI-Powered Answers — Get comprehensive answers from Knowledge Agents
  • Document Search — Find cards and content across your knowledge base
  • Create Drafts — Generate new card drafts from AI tools
  • Update Cards — Modify existing cards directly
  • Connected Sources — Access Salesforce, Slack, Google Drive, Confluence, SharePoint through Guru
  • Permission-Aware — Respects all existing Guru permissions
  • Analytics — All queries logged in AI Agent Center

Setup

1. Get API Token

  1. Go to Guru Admin → API Tokens
  2. Create a new token
  3. Note your email and token

2. Configure Environment

Add to ~/.clawdbot/.env:

[email protected]:your-api-token

3. Configure mcporter

Add to config/mcporter.json:

{
  "mcpServers": {
    "guru": {
      "baseUrl": "https://mcp.api.getguru.com/mcp",
      "headers": {
        "Authorization": "Bearer ${GURU_API_TOKEN}"
      }
    }
  }
}

4. Verify

mcporter list guru

Available Tools

guru_list_knowledge_agents

List all Knowledge Agents in your workspace. Always call this first to get agent IDs for other tools.

mcporter call 'guru.guru_list_knowledge_agents()'

Returns:

[
  {"id": "08de66e8-...", "name": "Guru"},
  {"id": "abc123...", "name": "Engineering Docs"}
]

guru_answer_generation

Get AI-powered answers from a Knowledge Agent. Best for specific questions like "What is X?" or "How do I Y?".

mcporter call 'guru.guru_answer_generation(
  agentId: "YOUR_AGENT_ID",
  question: "How do I submit expenses?"
)'

Optional filters:

  • collectionIds — Limit to specific collections
  • sourceIds — Limit to specific sources

Returns comprehensive answer with sources.

guru_search_documents

Find documents, cards, and sources. Best for browsing content like "find docs on X" or "do we have cards about Y?".

mcporter call 'guru.guru_search_documents(
  agentId: "YOUR_AGENT_ID",
  query: "onboarding process"
)'

Returns list of matching documents with snippets.

guru_get_card_by_id

Get full card content in HTML format.

mcporter call 'guru.guru_get_card_by_id(id: "CARD_ID")'

Returns card ID, title, and HTML content.

guru_create_draft

Create a new card draft.

mcporter call 'guru.guru_create_draft(
  title: "New Process Guide",
  content: "\x3Ch2>Overview\x3C/h2>\x3Cp>This guide covers...\x3C/p>"
)'

Returns draft ID and URL.

guru_update_card

Update an existing card. First retrieve current content with guru_get_card_by_id, then modify.

mcporter call 'guru.guru_update_card(
  cardId: "CARD_ID",
  title: "Updated Title",
  content: "\x3Cp>Updated HTML content...\x3C/p>"
)'

Important: Preserve HTML structure when updating. Insert/replace content within existing DOM hierarchy.

Usage Patterns

Ask a Question

# 1. Get agent ID
mcporter call 'guru.guru_list_knowledge_agents()'

# 2. Ask question
mcporter call 'guru.guru_answer_generation(
  agentId: "08de66e8-...",
  question: "What is the PTO policy?"
)'

Find and Read a Card

# 1. Search for cards
mcporter call 'guru.guru_search_documents(
  agentId: "08de66e8-...",
  query: "expense report"
)'

# 2. Get full content
mcporter call 'guru.guru_get_card_by_id(id: "CARD_ID_FROM_SEARCH")'

Create New Documentation

mcporter call 'guru.guru_create_draft(
  title: "API Authentication Guide",
  content: "\x3Ch2>Overview\x3C/h2>\x3Cp>This guide explains how to authenticate with our API.\x3C/p>\x3Ch2>Steps\x3C/h2>\x3Col>\x3Cli>Generate API key\x3C/li>\x3Cli>Add to headers\x3C/li>\x3C/ol>"
)'

Choosing the Right Tool

Use Case Tool
"What is X?" / "How do I Y?" guru_answer_generation
"Find docs about X" guru_search_documents
"Show me card XYZ" guru_get_card_by_id
"Create a new guide for X" guru_create_draft
"Update this card with..." guru_update_card

Token Format

The GURU_API_TOKEN must be in format email:token:

[email protected]:a1b2c3d4-e5f6-7890-abcd-ef1234567890

Notes

  • Questions appear in Guru's AI Agent Center analytics
  • All permissions enforced (users only see what they have access to)
  • Knowledge Agents can be domain-specific — choose the right one for your question
  • Card content is HTML — preserve structure when updating

Resources

Usage Guidance
Before installing or using this skill: (1) Confirm the source — the registry shows 'Source: unknown' but the homepage is getguru.com; prefer installing only if you trust that origin. (2) Resolve the metadata mismatch: the SKILL.md requires the mcporter binary and a GURU_API_TOKEN even though the registry metadata lists none — verify that requirement and obtain mcporter from an official source. (3) Create a scoped/least-privilege Guru API token, understand its permissions and retention, and consider using a token you can revoke. (4) Be aware the skill instructs writing credentials to ~/.clawdbot/.env and editing config/mcporter.json — these are persistent changes; review those files and file permissions. (5) Remember that queries are logged in Guru's AI Agent Center, so do not send sensitive secrets or private data unless you accept that logging. If you cannot verify the origin or the mcporter client, treat this skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: guru-mcp Version: 1.0.0 The skill bundle is benign. It provides instructions for an AI agent to interact with the Guru knowledge base via the `mcporter` binary and the official Guru MCP API endpoint (`mcp.api.getguru.com`). The `SKILL.md` file clearly outlines the required environment variable (`GURU_API_TOKEN`), the configuration for `mcporter`, and the specific API calls (e.g., `guru_list_knowledge_agents`, `guru_answer_generation`, `guru_create_draft`). There is no evidence of data exfiltration to unauthorized endpoints, malicious execution of arbitrary commands, persistence mechanisms, obfuscation, or prompt injection attempts designed to subvert the agent's intended purpose. All actions are aligned with the stated goal of accessing and managing Guru knowledge base content.
Capability Assessment
Purpose & Capability
The skill's stated purpose (access Guru via MCP to search, ask questions, create/update cards) matches the SKILL.md instructions: it expects an MCP endpoint, a GURU_API_TOKEN, and the mcporter client to call the MCP API. However, the registry metadata provided with the skill lists no required binaries or env vars, while the SKILL.md metadata and instructions explicitly require the mcporter binary and a GURU_API_TOKEN — this mismatch is an incoherence to investigate.
Instruction Scope
Instructions are specific and constrained to the stated task: create a Guru API token, set GURU_API_TOKEN in ~/.clawdbot/.env, add a guru entry to config/mcporter.json, and invoke mcporter calls to MCP endpoints. These steps involve reading/writing configuration files in your home directory and calling an external API (mcp.api.getguru.com). The instructions do not ask for unrelated files/credentials, but they do instruct creating/modifying files at specific paths which is outside the skill bundle and should be done only if you trust the source.
Install Mechanism
This is an instruction-only skill with no install spec and no code to write to disk. That lowers risk. It does rely on an external CLI (mcporter) being present but does not provide an installer — the absence of an install spec is consistent with an instruction-only integration, though you should obtain mcporter from an official source.
Credentials
The only sensitive credential the SKILL.md requires is a single GURU_API_TOKEN (in the form email:token), which is proportionate for a Guru integration. That token is used in an Authorization header for the MCP server. However, the top-level registry metadata claimed no required env vars while the embedded SKILL.md requires GURU_API_TOKEN — this inconsistency should be resolved. Also note that queries are logged in Guru's AI Agent Center (per the docs), so content sent to the skill will be recorded by Guru.
Persistence & Privilege
The skill does not request 'always: true' or other elevated platform privileges. It will operate only when invoked. It does instruct you to write configuration files (~/ .clawdbot/.env and config/mcporter.json), which is normal for configuring a CLI client but is a permanent change to your environment that you should be willing to make before proceeding.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install guru-mcp
  3. After installation, invoke the skill by name or use /guru-mcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release - Guru Knowledge Base MCP with all 6 tools
Metadata
Slug guru-mcp
Version 1.0.0
License
All-time Installs 3
Active Installs 3
Total Versions 1
Frequently Asked Questions

What is Guru MCP?

Access Guru knowledge base via MCP - ask AI questions, search documents, create drafts, and update cards. Connects to all your Guru sources including Slack, Drive, Confluence, and SharePoint. It is an AI Agent Skill for Claude Code / OpenClaw, with 2240 downloads so far.

How do I install Guru MCP?

Run "/install guru-mcp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Guru MCP free?

Yes, Guru MCP is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Guru MCP support?

Guru MCP is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Guru MCP?

It is built and maintained by pvoo (@pvoo); the current version is v1.0.0.

💬 Comments