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

exponential-mcp

v0.1.1

Published

MCP server for Exponential - connect Claude to your projects, actions, and goals

Readme

Exponential MCP

Connect Claude to your Exponential workspace. Manage projects, actions, and OKRs directly from Claude.

Quick Start

1. Create an API Key

Go to exponential.im/settings/api-keys and create a new key:

  • Click Create API Key
  • Select JWT Token as the token type
  • Copy the generated key

2. Set Up the MCP Server

npx exponential-mcp init

Paste your API key when prompted.

3. Configure for Your Claude Client

For Claude Desktop:

  • exponential-mcp init will automatically configure Claude Desktop
  • Restart Claude Desktop

For Claude Code (VSCode Extension):

  • The server uses .mcp.json in your project directory
  • Reload your VSCode window (Cmd+Shift+P → "Developer: Reload Window")
  • The server will be available in your current project

4. Ask Claude to manage your tasks!

What Claude Can Do

Once connected, Claude can:

  • List projects – "What projects am I working on?"
  • View actions – "Show my active tasks"
  • Create actions – "Add a task to call John tomorrow"
  • Complete actions – "Mark the report task as done"
  • View OKRs – "What are my Q1 goals?"
  • Search – "Find anything related to Kenya"

Manual Setup

For Claude Desktop

macOS (recommended path): ~/Library/Application Support/Claude/claude_desktop_config.json
Legacy path: ~/.claude/claude_desktop_config.json

Add this to the appropriate file:

{
  "mcpServers": {
    "exponential": {
      "command": "/absolute/path/to/node",
      "args": ["/absolute/path/to/exponential-mcp/dist/index.js"]
    }
  }
}

For Claude Code (VSCode Extension)

Create a .mcp.json file in your project directory:

{
  "mcpServers": {
    "exponential": {
      "command": "npx",
      "args": ["-y", "exponential-mcp", "serve"]
    }
  }
}

Then reload your VSCode window.

Note: The API key is stored in the Exponential SDK config store (created by npx exponential-mcp init), so you don't need to specify it in the MCP configuration. Run exponential-mcp config to see the current storage path and values. Run exponential-mcp doctor to print a recommended MCP config snippet for your machine.

Commands

# Initialize with your API key
exponential-mcp init

# Show current config
exponential-mcp config

# Diagnose local setup
exponential-mcp doctor

# Start server manually (usually not needed)
exponential-mcp serve

Available Tools

| Tool | Description | |------|-------------| | get_workspaces | List all workspaces | | get_projects | List projects (optionally by workspace) | | get_actions | List actions/tasks (filter by project or status) | | create_action | Create a new task (supports natural language) | | complete_action | Mark an action as done | | get_goals | List OKRs with progress | | search | Search across everything |

Development

# Clone the repo
git clone https://github.com/your-org/exponential-mcp
cd exponential-mcp

# Install dependencies
npm install

# Build
npm run build

# Run locally
npm start

License

MIT