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

groove-mcp

v0.1.0

Published

Model Context Protocol server for Groove HQ

Readme

Groove MCP Server

A Model Context Protocol (MCP) server for Groove HQ, providing access to customer support ticketing, CRM, and knowledge base functionality through the Groove GraphQL API v2.

Installation

npm install
npm run build

Configuration

Create a .env file with your Groove API credentials:

GROOVE_API_TOKEN=your_groove_api_token_here
GROOVE_API_URL=https://api.groovehq.com/v2/graphql  # Optional, this is the default

Usage

Run the server:

npm start

Or use it with an MCP client by pointing to the executable:

node dist/index.js

Available Tools

Conversation Management

  • listConversations - List conversations with optional filters

    • status: Filter by status (unread, opened, closed, snoozed)
    • assigneeId: Filter by assigned agent ID
    • contactId: Filter by contact ID
    • tagIds: Filter by tag IDs
    • limit: Maximum number of conversations to return (default: 20)
  • getConversation - Get detailed information about a specific conversation

    • id: The conversation ID (required)
  • createConversation - Create a new conversation

    • contactId: ID of the contact (required)
    • subject: Subject of the conversation (required)
    • body: Initial message body (required)
    • assigneeId: ID of agent to assign to
    • tagIds: Tag IDs to apply
  • updateConversation - Update a conversation

    • id: The conversation ID (required)
    • status: New status (opened, closed, snoozed)
    • assigneeId: ID of agent to assign to
    • tagIds: Tag IDs to apply
    • snoozedUntil: ISO 8601 datetime to snooze until
  • closeConversation - Close a conversation

    • id: The conversation ID to close (required)

Message Operations

  • listMessages - List messages in a conversation

    • conversationId: The conversation ID to list messages for (required)
    • limit: Maximum number of messages to return (default: 50)
    • after: Cursor for pagination
  • sendMessage - Send a message in a conversation

    • conversationId: The conversation ID to send message to (required)
    • body: The message body content (required)
    • attachmentIds: IDs of attachments to include
  • createNote - Create an internal note in a conversation

    • conversationId: The conversation ID to add note to (required)
    • body: The note content (required)

Contact Management

  • listContacts - List contacts with optional search

    • search: Search string to filter contacts
    • limit: Maximum number of contacts to return (default: 20)
    • after: Cursor for pagination
  • getContact - Get detailed information about a specific contact

    • id: The contact ID (required)
  • createContact - Create a new contact

    • email: Contact email address (required)
    • firstName: Contact first name
    • lastName: Contact last name
    • company: Contact company
    • title: Contact job title
    • phone: Contact phone number
  • updateContact - Update contact information

    • id: The contact ID (required)
    • email: Contact email address
    • firstName: Contact first name
    • lastName: Contact last name
    • company: Contact company
    • title: Contact job title
    • phone: Contact phone number

Agent Operations

  • listAgents - List all agents in the organization

  • getAgent - Get detailed information about a specific agent

    • id: The agent ID (required)
  • getAvailableAgents - List all available agents

Knowledge Base

  • searchKbArticles - Search knowledge base articles
    • query: Search query (required)
    • limit: Maximum number of articles to return (default: 20)

Resources

The server exposes Knowledge Base articles as MCP resources. These can be browsed and read by MCP clients.

  • Knowledge Base Articles - Published KB articles are available as resources
    • Each article includes metadata like category, views, and helpful votes
    • Articles are returned in Markdown format when read

Development

# Watch mode for development
npm run dev

# Run tests
npm test

# Lint code
npm run lint

# Type check
npm run typecheck

Project Structure

├── src/
│   ├── index.ts           # Main server entry point
│   ├── groove-client.ts   # GraphQL client wrapper
│   ├── tools/             # MCP tool implementations
│   │   ├── conversations.ts
│   │   ├── messages.ts
│   │   ├── contacts.ts
│   │   └── agents.ts
│   ├── resources/         # MCP resource implementations
│   │   └── kb-articles.ts
│   ├── types/             # TypeScript type definitions
│   │   └── groove.ts
│   └── utils/             # Utility functions
│       └── graphql-queries.ts
├── tests/                 # Test files
├── docs/                  # Documentation
└── dist/                  # Compiled JavaScript files

License

MIT