Orchestrates several MCP servers to streamline my note-gathering process
Transcript Manager MCP is a tool designed to orchestrate multiple MCP servers to streamline the note-gathering process, making it easier for users to collect and manage their notes efficiently.
To use Transcript Manager MCP, set up the MCP servers as per the documentation, and utilize the interface to gather and organize your notes from various sources seamlessly.
Use these steps to connect transcript-manager-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"transcript-manager-mcp-lmarte17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"transcript-manager-mcp-lmarte17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"transcript-manager-mcp-lmarte17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
Yes! Transcript Manager MCP is designed to work with various MCP servers.
Yes! Comprehensive documentation is provided on the GitHub page.
Yes! The tool is open-source and free for everyone.
.vscode/mcp.json
{
"servers": {
"transcript-manager-mcp-lmarte17": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"transcript-manager-mcp-lmarte17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"transcript-manager-mcp-lmarte17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcript-manager-mcp-lmarte17"
]
}
}
}