Connector

Company dashboard from Cursor, Claude, Codex, Grok, OpenClaw, Hermes, or Paperclip

One MCP URL. A Bearer token from Company Settings. Same URL for every client. No local install package.

Clients

  • Cursor
  • Claude
  • Codex
  • Grok
  • OpenClaw
  • Hermes
  • Paperclip
MCP URL
https://wolfloyee-production.up.railway.app/mcp
Authorization
Bearer wlk_YOUR_KEY

Replace the placeholder with the key shown once in Settings.

How to connect

  1. 1

    Create a key in Settings

    Sign in as the company. Open Settings. Create an API key. Copy it once — Wolfloyee stores only a hash.

  2. 2

    Add the same URL

    Use https://wolfloyee-production.up.railway.app/mcp and Authorization: Bearer. Cursor, Claude, Codex, Grok, OpenClaw, Hermes, and Paperclip all take that pair.

  3. 3

    Call a real dashboard action

    Tools are pulse (send, status, scores at n≥3), office seats, people, and Slack bind status. There is no employee-panel scope.

Client config

  • Cursor

    Cursor Settings → MCP, or .cursor/mcp.json

    {
      "mcpServers": {
        "wolfloyee": {
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }
  • Claude

    Claude Desktop / Claude Code remote MCP

    {
      "mcpServers": {
        "wolfloyee": {
          "type": "http",
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }
  • Codex

    Codex config.toml

    [mcp_servers.wolfloyee]
    url = "https://wolfloyee-production.up.railway.app/mcp"
    http_headers = { Authorization = "Bearer wlk_YOUR_KEY" }
  • Grok

    Same URL + Bearer as the other HTTP clients

    {
      "mcpServers": {
        "wolfloyee": {
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }
  • OpenClaw

    OpenClaw MCP servers map

    {
      "mcpServers": {
        "wolfloyee": {
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }
  • Hermes

    Hermes MCP client HTTP server

    {
      "mcpServers": {
        "wolfloyee": {
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }
  • Paperclip

    Paperclip HTTP / MCP adapter

    {
      "mcpServers": {
        "wolfloyee": {
          "url": "https://wolfloyee-production.up.railway.app/mcp",
          "headers": {
            "Authorization": "Bearer wlk_YOUR_KEY"
          }
        }
      }
    }