drio
Open app

mcp-servers

Source

Make AI agent more general

Catalog onlyCatalog onlySTDIO

Overview

mcp-servers is a project aimed at making AI agents more general, enhancing their capabilities and adaptability across various tasks.

To use mcp-servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to integrate the AI agent into your applications.

  • Generalization of AI agents for diverse applications - Easy integration with existing systems - Open-source and community-driven development
  1. Developing versatile AI assistants for customer support.
  2. Creating adaptive learning systems in educational technology.
  3. Implementing AI in robotics for improved task performance.

Add to your AI client

Use these steps to connect 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-louisfghbvc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-louisfghbvc"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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