drio
Open app

Props Labs MCP Servers

Source

An awesome collection of Model Context Protocol (MCP) servers created by [Props Labs](

Catalog onlyCatalog onlySTDIO

Overview

The Model Context Protocol (MCP) is a standardized way for AI models to interact with external tools and services, enabling them to access real-time data, perform actions, and integrate with various APIs.

To use the MCP servers, navigate to the specific server's directory in the repository and follow the setup instructions provided in the documentation.

  • Standardized interaction for AI models with external services. - Access to real-time data and API integration. - Specific servers like Fireflies for transcript retrieval and analysis.
  1. Enabling AI models to analyze meeting transcripts from Fireflies.ai.
  2. Integrating various APIs for enhanced AI functionalities.
  3. Facilitating real-time data access for AI applications.

Add to your AI client

Use these steps to connect Props Labs MCP Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-servers-props-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

Claude Desktop

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": {
    "mcp-servers-props-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-props-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-servers-props-labs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-props-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-props-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-props-labs"
      ]
    }
  }
}

FAQ

What is the purpose of MCP Servers?

MCP Servers allow AI models to interact with external tools and services seamlessly.

How can I contribute to the MCP Servers?

Contributions are welcome! You can submit pull requests or open issues for discussion.

What license is the MCP Servers collection under?

The collection is licensed under the MIT License.