Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .gitignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Dependencies
node_modules/
.pnpm-store/
.pnpm-debug.log*

# Build output
build/
dist/
*.tsbuildinfo

# Environment variables
.env
.env.local
.env.*.local

# IDE and editor files
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Testing
coverage/

# TypeScript
*.tsbuildinfo

# Misc
.cache/
.temp/
.tmp/
27 changes: 27 additions & 0 deletions Dockerfile 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# syntax=docker/dockerfile:1
FROM node:lts-alpine AS builder
WORKDIR /app

# Install pnpm
RUN npm install -g pnpm

# Copy package files and tsconfig
COPY package.json pnpm-lock.yaml tsconfig.json ./
COPY src ./src

# Install dependencies and build
RUN pnpm install --frozen-lockfile
RUN pnpm run build

FROM node:lts-alpine AS runner
WORKDIR /app
# Copy built files and production dependencies
COPY --from=builder /app/build ./build
COPY package.json pnpm-lock.yaml ./

# Install production dependencies
RUN npm install --production

# Default command
ENTRYPOINT ["node", "build/index.js"]
21 changes: 21 additions & 0 deletions LICENSE 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 OverQuota Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
128 changes: 128 additions & 0 deletions README 2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/chatterboxio-chatterboxio-mcp-server-badge.png)](https://mseep.ai/app/chatterboxio-chatterboxio-mcp-server)

# ChatterBox MCP Server

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/OverQuotaAI/chatterboxio-mcp-server)](https://archestra.ai/mcp-catalog/overquotaai__chatterboxio-mcp-server)
[![smithery badge](https://smithery.ai/badge/@OverQuotaAI/chatterboxio-mcp-server)](https://smithery.ai/server/@OverQuotaAI/chatterboxio-mcp-server)

A Model Context Protocol server implementation for ChatterBox, enabling AI agents to interact with online meetings and generate meeting summaries.

<a href="https://glama.ai/mcp/servers/@ChatterBoxIO/chatterboxio-mcp-server">
<img width="380" height="200" src="https://glama.ai/mcp/servers/@ChatterBoxIO/chatterboxio-mcp-server/badge" alt="ChatterBox MCP Server" />
</a>

## Overview

The ChatterBox MCP Server provides tools for AI agents to:

- Join online meetings (Zoom, Google Meet, or Microsoft Teams)
- Capture transcripts and recordings
- Generate meeting summaries

## Installation

### Installing via Smithery

To install chatterboxio-mcp-server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@OverQuotaAI/chatterboxio-mcp-server):

```bash
npx -y @smithery/cli install @OverQuotaAI/chatterboxio-mcp-server --client claude
```

### Manual Installation

You can install the dependencies using either npm or pnpm:

```bash
# Using npm
npm install

# Using pnpm
pnpm install
```

## Configuration

### Getting API Keys

You can get your API keys for free by registering on our website at [ChatterBox](https://chatter-box.io). After registration, you'll receive your API endpoint and key.

### Environment Setup

Create a `.env` file in the root directory with the following variables:

```env
CHATTERBOX_API_ENDPOINT=https://api.chatter-box.io
CHATTERBOX_API_KEY=your_api_key_here
```

## Usage

### Starting the Server

```bash
pnpm start
```

### Available Tools

#### joinMeeting

Join a Zoom or Google Meet meeting and capture transcript and audio recording.

**Parameters:**

- `platform` (string): The online conference platform ("zoom", "googlemeet", or "teams")
- `meetingId` (string): The ID of the meeting
- `meetingPassword` (string, optional): The password or the passcode for the meeting
- `botName` (string): The name of the bot
- `webhookUrl` (string, optional): URL to receive webhook events for meeting status

#### getMeetingInfo

Get information about a meeting, including transcript and recording.

**Parameters:**

- `sessionId` (string): The session ID to get information for

#### summarizeMeeting

Generate a concise summary of a meeting's contents from its transcript.

**Parameters:**

- `transcript` (string): The meeting transcript to summarize

## Development

### Prerequisites

- Node.js 16+
- npm or yarn

### Building

```bash
pnpm run build
```

### Debugging

To debug the MCP server using the MCP Inspector:

```bash
npx @modelcontextprotocol/inspector
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Support

For support, please visit [ChatterBox Documentation](https://chatter-box.io/documentation) or contact support@chatter-box.io.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# ChatterBox MCP Server

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/OverQuotaAI/chatterboxio-mcp-server)](https://archestra.ai/mcp-catalog/overquotaai__chatterboxio-mcp-server)
[![smithery badge](https://smithery.ai/badge/@OverQuotaAI/chatterboxio-mcp-server)](https://smithery.ai/server/@OverQuotaAI/chatterboxio-mcp-server)

A Model Context Protocol server implementation for ChatterBox, enabling AI agents to interact with online meetings and generate meeting summaries.
Expand Down
32 changes: 32 additions & 0 deletions package 2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "chatterboxio-mcp-server",
"version": "1.0.0",
"description": "",
"type": "module",
"bin": {
"chatterboxio-mcp-server": "./build/index.js"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node build/index.js"
},
"files": [
"build"
],
"keywords": [],
"author": "Alex Tsimbalistov",
"license": "MIT",
"packageManager": "pnpm@10.5.2",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"dotenv": "^16.5.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/node": "^22.15.32",
"typescript": "^5.8.3"
}
}
Loading