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

teamform-mcp-server

v0.0.5

Published

TeamForm MCP Server - Model Context Protocol server for TeamForm API integration

Downloads

6

Readme

TeamForm MCP Server

A Model Context Protocol (MCP) server that enables AI assistants to interact with your TeamForm organization data.

What It Does

This MCP server provides 8 tools that allow AI assistants (like Claude Desktop) to:

  • Search and retrieve people from your TeamForm organization
  • Search and retrieve teams with optional membership and tag information
  • Get team tags and applied counts
  • Retrieve objectives with parent objective relationships
  • Filter data by workspace and historical dates
  • Include related data like memberships, tags, and parent objects when requested
  • Search for tags and see how many times they are applied
  • Find all people or teams with a specific tag

Installation

Install the package globally using npm:

npm install -g teamform-mcp-server

Configuration

You'll need your TeamForm API credentials. You can configure the server in two ways:

Option 1: Command Line Arguments (Recommended)

teamform-mcp-server \
  --tenant-id "your_tenant_id" \
  --client-id "your_client_id" \
  --client-secret "your_client_secret"

Option 2: Environment Variables

Create a .env file with your credentials:

TEAMFORM_TENANT_ID=your_tenant_id
TEAMFORM_CLIENT_ID=your_client_id
TEAMFORM_CLIENT_SECRET=your_client_secret

Then run: teamform-mcp-server

Optional Settings:

  • --api-base-url or TEAMFORM_API_BASE_URL (default: https://api.teamform.co)
  • --auth-url or TEAMFORM_AUTH_URL (default: https://orchestrated-integration.au.auth0.com/oauth/token)

Usage with Claude Desktop

macOS Setup

  1. Open the Claude Desktop configuration file:

    nano "~/Library/Application Support/Claude/claude_desktop_config.json"
  2. Add the MCP server configuration:

    {
      "mcpServers": {
        "teamform": {
          "command": "teamform-mcp-server",
          "args": [
            "--tenant-id",
            "your_tenant_id",
            "--client-id",
            "your_client_id",
            "--client-secret",
            "your_client_secret"
          ]
        }
      }
    }
  3. Restart Claude Desktop

Windows Setup

  1. Open the configuration file at: %APPDATA%\Claude\claude_desktop_config.json

  2. Add the same configuration as above

  3. Restart Claude Desktop

Available Tools

Once connected, Claude will have access to these TeamForm tools:

| Tool | Purpose | | ------------------ | ----------------------------------------------------------- | | get_people | Get detailed information about specific people by their IDs | | search_people | Search for people by name (returns up to 25 results) | | get_teams | Get detailed information about specific teams by their IDs | | search_teams | Search for teams by name (returns up to 25 results) | | get_teams_tags | Get tags applied to specific teams | | get_objectives | Get objective details by their IDs | | search_tags | Search for tags by value (partial or exact match) | | get_applied_tags | Get all people or teams that have a specific tag applied |

Example Queries You Can Ask Claude

  • "Show me all people in the Engineering team"
  • "What are the current objectives for the Product team?"
  • "Find all teams with 'marketing' in their name"
  • "Get details about person ID 12345 including their team memberships"
  • "Show me the tags applied to the Sales team"

Getting Help

Run teamform-mcp-server --help to see all available command line options.

Requirements

  • Node.js 22 or higher
  • Valid TeamForm API credentials
  • AI assistant that supports MCP (Claude Desktop or similar)

License

MIT