drio
Open app

Model Context Protocol (MCP) Server

Source

an MCP server for the services I like to use with AI agents, which you should probably fork and modify for your own use. No PRs accepted, this is just for me. Not private because you or a bot might get something out of what you see here.

Catalog onlyCatalog onlySTDIO

Overview

The MCP Server is a modular server that implements the Model Context Protocol standard, providing tools for various services like GitHub, GitLab, Google Maps, Memory storage, and Puppeteer web automation.

To use the MCP Server, clone the repository, install the necessary dependencies, configure your environment variables, and start the server. You can access the tools via the MCP Gateway or directly through their API endpoints.

  • MCP Gateway: A unified endpoint for all tool requests following the MCP standard. - MCP Manifest: An endpoint that describes all available tools and their capabilities. - Direct Tool Access: Each tool can be accessed directly via its own API endpoints. - Modular Design: Easy to add or remove tools as needed.
  1. Automating interactions with GitHub and GitLab repositories.
  2. Performing geocoding and directions using Google Maps.
  3. Storing and retrieving data persistently with the Memory tool.
  4. Web automation tasks like taking screenshots and generating PDFs using Puppeteer.

Add to your AI client

Use these steps to connect Model Context Protocol (MCP) Server 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": {
    "multi-service-mcp-server-adampippert": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-multi-service-mcp-server-adampippert"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "multi-service-mcp-server-adampippert": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-multi-service-mcp-server-adampippert"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "multi-service-mcp-server-adampippert": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-multi-service-mcp-server-adampippert"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "multi-service-mcp-server-adampippert": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-multi-service-mcp-server-adampippert"
      ]
    }
  }
}

FAQ

Can I add my own tools to the MCP Server?

Yes! You can extend the MCP Server by adding new tools following the provided guidelines.

Is the MCP Server free to use?

Yes! The MCP Server is open-source and free to use.

What are the prerequisites for running the MCP Server?

You need Python 3.8 or higher, Node.js 14 or higher, and a compatible Linux distribution.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":2268,"uuid":"902a990c-69d1-4a45-9547-fcd4dcf1f8d5","name":"multi-service-mcp-server","title":"Model Context Protocol (MCP) Server","description":"an MCP server for the services I like to use with AI agents, which you should probably fork and modify for your own use. No PRs accepted, this is just for me. Not private because you or a bot might get something out of what you see here.","avatar_url":"https://avatars.githubusercontent.com/u/5215461?v=4","created_at":"2025-03-09T07:15:52.389Z","updated_at":"2025-03-12T10:21:16.823Z","status":"created","author_name":"AdamPippert","author_avatar_url":"https://avatars.githubusercontent.com/u/5215461?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/AdamPippert/multi-service-mcp-server","target":"_self","content":"$29","summary":"$2a","img_url":"https://github.com/AdamPippert/multi-service-mcp-server/raw/main/architecture.png","type":null,"metadata":"{\"star\":\"3\",\"license\":\"Apache-2.0 license\",\"language\":\"Python\",\"is_official\":false,\"latest_commit_time\":\"2025-04-21 09:09:16\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Model Context Protocol (MCP) Server — MCP Registry