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

workfullcircle-mcp

v2.0.8

Published

WorkFullCircle MCP - Universal AI memory that works anywhere

Readme

WorkFullCircle MCP - Universal AI Memory

🧠 Persistent intelligence that works anywhere across all your AI tools

Quick Start

# Install and configure automatically
npx workfullcircle-mcp install --token uam_your_token_here

# Or use the Streamable HTTP bridge directly
npx workfullcircle-remote https://your-server.com --header "Authorization: Bearer uam_your_token"

Environment Variables

Configure your MCP server with these environment variables:

Required Variables

# WorkFullCircle API Configuration
WFC_API_URL=https://workfullcircle.com          # Streamable HTTP endpoint
WFC_API_KEY=uam_your_api_key_here                # Your API key

Optional Variables

# Testing
TEST_API_URL=http://localhost:9001/api               # Local testing API
TEST_API_KEY=uam_test_key                            # Local testing key

# Server Configuration (for self-hosting)
HOST=0.0.0.0                                         # Server host
PORT=9001                                            # Server port
NODE_ENV=development                                 # Environment

Installation Methods

Method 1: Auto-Install (Recommended)

npx @workfullcircle/mcp install --token uam_your_token
  • Automatically detects and configures: Claude Desktop, Cursor, Windsurf, VS Code
  • No manual config file editing required

Method 2: Manual Configuration

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "workfullcircle": {
      "command": "npx",
      "args": ["-y", "workfullcircle-remote", "https://workfullcircle.com/sse", "--header", "Authorization: Bearer uam_your_token"]
    }
  }
}

Cursor/Windsurf (~/.cursor/mcp.json or ~/.windsurf/mcp.json):

{
  "mcpServers": {
    "workfullcircle": {
      "command": "npx",
      "args": ["-y", "workfullcircle-remote", "https://workfullcircle.com/sse", "--header", "Authorization: Bearer uam_your_token"]
    }
  }
}

Method 3: Local API Connection

For direct API connections without SSE:

{
  "mcpServers": {
    "workfullcircle": {
      "command": "npx",
      "args": ["-y", "workfullcircle-mcp-local"],
      "env": {
        "WFC_API_URL": "https://workfullcircle.com/api",
        "WFC_API_KEY": "uam_your_token"
      }
    }
  }
}

Platform Support

Claude Desktop - Full SSE support
Cursor - Full SSE support
Windsurf - Full SSE support
VS Code - Via global MCP extension
LangChain - Via stdio interface
Custom integrations - Standard MCP protocol

Available Tools

  • save_memory - Store important information
  • get_memory - Search and retrieve memories
  • capture_cognition - Auto-capture conversations
  • delete_memory - Remove stored memories
  • update_memory - Modify existing memories
  • list_all_memories - Browse all stored memories

Self-Hosting

Set up your own WorkFullCircle server:

  1. Clone and setup:
git clone https://github.com/workfullcircle/universal-ai-memory-mcp
cd universal-ai-memory-mcp
cp .env.example .env
# Edit .env with your configuration
npm install
npm start
  1. Configure environment:
# .env file
SUPABASE_URL=your_supabase_url
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key
OPENAI_API_KEY=your_openai_key
HOST=0.0.0.0
PORT=9001
  1. Connect clients:
npx workfullcircle-mcp install --token uam_your_token --server-url http://localhost:9001

Architecture

  • workfullcircle-mcp - Main installer CLI
  • workfullcircle-remote - SSE proxy for remote servers
  • workfullcircle-mcp-local - Direct API client

Troubleshooting

Connection Issues:

  • Verify WFC_API_KEY is correct and starts with uam_
  • Check WFC_API_URL is accessible
  • Ensure firewall allows connections to workfullcircle.com

Configuration Issues:

  • Run npx workfullcircle-mcp install to auto-fix configs
  • Check JSON syntax in manual config files
  • Restart IDE after configuration changes

Platform-Specific:

  • Windows: Configs in %APPDATA%\Claude\ and %USERPROFILE%\.cursor\
  • macOS: Configs in ~/Library/Application Support/ and ~/.cursor/
  • Linux: Configs in ~/.config/ and ~/.cursor/

Support


WorkFullCircle - Your AI memory, everywhere you need it.