dougs-mcp-server

verdier/dougs-mcp-server

3.2

If you are the rightful owner of dougs-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The dougs-mcp-server is an unofficial, work-in-progress MCP server wrapper for the dougs-api-client, designed to facilitate communication with Dougs services using the Model Context Protocol.

dougs-mcp-server

⚠️ Unofficial — This is an unofficial project, not affiliated with Dougs.
🚧 Work in progress — API may change.

MCP server wrapper for dougs-api-client.

Installation

npm install -g dougs-mcp-server

Configuration

Set your Dougs credentials as environment variables:

export DOUGS_EMAIL=your-email@example.com
export DOUGS_PASSWORD=your-password

Or create a .env file in the working directory.

Usage

VS Code

Add to your VS Code MCP settings (.vscode/mcp.json or user settings):

{
  "servers": {
    "dougs-mcp-server": {
      "command": "npx",
      "args": ["-y", "dougs-mcp-server"],
      "env": {
        "DOUGS_EMAIL": "your-email@example.com",
        "DOUGS_PASSWORD": "your-password"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "dougs": {
      "command": "npx",
      "args": ["-y", "dougs-mcp-server"],
      "env": {
        "DOUGS_EMAIL": "your-email@example.com",
        "DOUGS_PASSWORD": "your-password"
      }
    }
  }
}

The server communicates via stdio using the Model Context Protocol.


Authors: Luc Verdier, AI Agent
License: ISC