Config is the same across clients β only the file and path differ.
{
"mcpServers": {
"tldv-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
π The First and Only MCP Server for Google Meet, Zoom, and Microsoft Teams Integration
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories β click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience β it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
MCP server for Kaseya Autotask PSA β 39 tools for companies, tickets, projects, time entries, and more
Email & SMS infrastructure for AI agents β send and receive real email and text messages programmatically
MCP Security Weekly
Get CVE alerts and security updates for Tldv Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
π The First and Only MCP Server for Google Meet, Zoom, and Microsoft Teams Integration
This project provides a Model Context Protocol (MCP) server enabling seamless interaction with the tl;dv API. As the pioneering MCP solution for video conferencing platforms, it unlocks the power of tl;dv's meeting intelligence across Google Meet, Zoom, and Microsoft Teams through a standardized interface. This integration allows AI models and MCP clients to access, analyze, and derive insights from your meetings across all major platforms in one unified way.
You can run this MCP server using either Docker or Node.js. Configure your MCP client (e.g., Claude Desktop, Cursor) to connect to the server.
Go in the repo.
Build the Docker image:
docker build -t tldv-mcp-server .
Configure your MCP Client:
Update your MCP client's configuration file (e.g., claude_desktop_config.json). The exact location and format may vary depending on the client.
{
"mcpServers": {
"tldv": {
"command": "docker",
"args": [
"run",
"-i",
"--init",
"--rm",
"-e",
"TLDV_API_KEY=<your-tldv-api-key>",
"tldv-mcp-server"
]
}
}
}
Replace <your-tldv-api-key> with your actual tl;dv API key.
Install dependencies:
npm install
Build the server:
npm run build
This command creates a dist folder containing the compiled server code (index.js).
Configure your MCP Client: Update your MCP client's configuration file.
{
"mcpServers": {
"tldv": {
"command": "node",
"args": ["/absolute/path/to/tldv-mcp-server/dist/index.js"],
"env": {
"TLDV_API_KEY": "your_tldv_api_key"
}
}
}
}
Replace /absolute/path/to/tldv-mcp-server/dist/index.js with the correct absolute path to the built server file and your_tldv_api_key with your tl;dv API key.
Refer to your specific MCP client's documentation for detailed setup instructions (e.g., Claude Tools).
Disclaimer Once you are updating this config file, you will need to kill your MCP client and restart it for the changes to be effective.
Install dependencies:
npm install
Set up Environment Variables: Copy the example environment file:
cp .env.example .env
Edit the .env file and add your TLDV_API_KEY. Other variable