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

tc-connector

v1.1.0

Published

Teach Charlie AI MCP Connector — bridges your Teach Charlie workflows to local AI agents via MCP

Readme

TC Connector

Teach Charlie AI MCP Connector — bridges your Teach Charlie workflows to local AI agents like OpenClaw via the Model Context Protocol.

How It Works

OpenClaw Agent (local)
    | stdio (MCP protocol)
TC Connector (this package)
    | HTTPS
Teach Charlie API (remote)
    | internal
Langflow (executes workflow)
  1. You enable workflows as "skills" in Teach Charlie
  2. TC Connector fetches those skills and exposes them as MCP tools
  3. Your local AI agent (OpenClaw, Claude Code, etc.) can call those tools
  4. The connector routes calls to Teach Charlie, which runs the workflow in Langflow

Quick Start

Option A: Interactive Setup

npx tc-connector --setup

This walks you through entering your token, verifies it, and saves config to ~/.tc-connector/config.json.

Option B: Manual Setup

1. Generate an MCP Token

Go to Settings > OpenClaw Connection in your Teach Charlie dashboard and click Generate MCP Token.

2. Add to OpenClaw

Add this to your .mcp.json (or OpenClaw MCP config):

{
  "mcpServers": {
    "teach-charlie": {
      "command": "npx",
      "args": ["tc-connector", "--token", "tc_YOUR_TOKEN_HERE"]
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "teach-charlie": {
      "command": "tc-connector",
      "args": ["--token", "tc_YOUR_TOKEN_HERE"]
    }
  }
}

3. Restart OpenClaw

Restart OpenClaw and your Teach Charlie workflow skills will appear as available tools.

Commands

Check Status

Verify your token and see available tools:

npx tc-connector --status

Output:

  TC Connector — Status
  ─────────────────────
  Version:    1.1.0
  API URL:    https://app.teachcharlie.ai
  Token:      tc_Hmn...A9lm
  Connection:  OK
  Tools:       2 available

Run as MCP Server

npx tc-connector --token tc_YOUR_TOKEN

Or if you ran --setup, just:

npx tc-connector

Configuration

CLI Flags

tc-connector [options]

Options:
  --token <token>     MCP bridge token (required unless configured)
  --api-url <url>     Teach Charlie API URL (default: https://app.teachcharlie.ai)
  --config <path>     Config file path (default: ~/.tc-connector/config.json)
  --setup             Interactive setup wizard
  --status            Check connection and token validity
  --version, -v       Show version
  --help, -h          Show help

Environment Variables

TC_TOKEN=tc_abc123...     # MCP bridge token
TC_API_URL=https://...    # API URL (optional)

Config File

Create ~/.tc-connector/config.json (or use --setup):

{
  "token": "tc_abc123...",
  "apiUrl": "https://app.teachcharlie.ai"
}

Development

cd tc-connector
npm install
npm run build
TC_TOKEN=your_token node bin/tc-connector.js

Testing with MCP Inspector

npx @modelcontextprotocol/inspector tc-connector --token your_token

Requirements

  • Node.js 18+
  • A Teach Charlie account with at least one workflow skill enabled