npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

yokigo-mcp-server

v0.5.0

Published

MCP server for [Yokigo](https://yokigo.com) — AI workspace intelligence. Gives Claude Code, Codex, and other MCP clients access to 36 tools for calls, tasks, chats, documents, people, and knowledge graph.

Downloads

785

Readme

yokigo-mcp-server

MCP server for Yokigo — AI workspace intelligence. Gives Claude Code, Codex, and other MCP clients access to 36 tools for calls, tasks, chats, documents, people, and knowledge graph.

Prerequisites

  • Node.js 18+
  • Yokigo API key (get one from Workspace Settings → API Keys in the app)

Credentials

You need two environment variables:

| Variable | Where to find | |---|---| | YOKIGO_API_BASE_URL | Take your Convex deployment URL and replace .convex.cloud with .convex.site. Example: https://festive-grouse-843.eu-west-1.convex.site | | YOKIGO_API_KEY | Workspace Settings → API Keys in the Yokigo app |

Setup — Claude Code

Option A: Project config file (recommended)

Create .mcp.json in your project root:

{
  "mcpServers": {
    "yokigo": {
      "command": "npx",
      "args": ["-y", "yokigo-mcp-server"],
      "env": {
        "YOKIGO_API_BASE_URL": "<your-convex-site-url>",
        "YOKIGO_API_KEY": "<your-api-key>"
      }
    }
  }
}

Note: This file contains your API key — add .mcp.json to .gitignore if the repo is shared.

Option B: CLI command

If you have the claude CLI in your PATH:

claude mcp add-json yokigo '{"type":"stdio","command":"npx","args":["-y","yokigo-mcp-server"],"env":{"YOKIGO_API_BASE_URL":"<your-convex-site-url>","YOKIGO_API_KEY":"<your-api-key>"}}' --scope local

If claude command is not found, use Option A instead.

Setup — Codex

Append to ~/.codex/config.toml:

[[mcp_servers]]
name = "yokigo"
command = "npx"
args = ["-y", "yokigo-mcp-server"]

[mcp_servers.env]
YOKIGO_API_BASE_URL = "<your-convex-site-url>"
YOKIGO_API_KEY = "<your-api-key>"

Verify

  1. Restart Claude Code after adding the config
  2. Run /mcp — yokigo should show as connected
  3. Send: Use Yokigo MCP. Call get_workspace_overview and show me the result.

Self-test

Test the connection without Claude Code:

YOKIGO_API_BASE_URL=https://... YOKIGO_API_KEY=yk_... npx yokigo-mcp-server --test

Expected output:

yokigo-mcp-server v0.3.0 — connection test

✓ Environment variables set
✓ Workspace: 5 calls, 12 topics, 3 tasks
All checks passed. Server is ready to use.

Troubleshooting

| Problem | Solution | |---|---| | claude command not found | Use Option A (.mcp.json file) instead of CLI | | Server not connecting after restart | Check that .mcp.json is in the project root, not inside .claude/. Both locations work, but the root is more reliable. | | "Missing YOKIGO_API_BASE_URL or YOKIGO_API_KEY" | Environment variables not set — check your config file for typos | | 401 Unauthorized | API key is invalid or expired — generate a new one in Workspace Settings | | Connection refused / network error | Base URL must end with .convex.site (not .convex.cloud) | | Tools not appearing | Run /mcp to check status. If yokigo shows an error, run the self-test above to diagnose. |

Usage

After connecting, the recommended first message:

Use Yokigo MCP. Start with get_workspace_overview and tell me what data already exists in this workspace.

Three main use cases:

  1. Exploreget_workspace_overview, then list/read tools
  2. Ingestupload_call_transcript / upload_drive_file, then run_backend_extraction
  3. Graph extraction — invoke the yokigo-graph-workflow prompt for the full 8-step workflow

License

MIT