The Official MCP Server for tl;dv API enables seamless interaction with the tl;dv API, providing a standardized interface for AI models and MCP clients to access meeting intelligence across Google Meet, Zoom, and Microsoft Teams. This integration allows you to retrieve, analyze, and derive insights from meetings across all major platforms in a unified way.
Before installing the MCP server, ensure you have:
docker build -t tldv-mcp-server .
claude_desktop_config.json
):{
"mcpServers": {
"tldv": {
"command": "docker",
"args": [
"run",
"--rm",
"--init",
"-e",
"TLDV_API_KEY=<your-tldv-api-key>",
"tldv-mcp-server"
],
}
}
}
Replace <your-tldv-api-key>
with your actual tl;dv API key.
npm install
npm run build
This command creates a dist
folder containing the compiled server code (index.js
).
{
"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.
After updating your configuration file, you will need to restart your MCP client for the changes to take effect. Refer to your specific MCP client's documentation for detailed setup instructions (e.g., Claude Tools).
If you encounter issues, consider these debugging approaches:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.