// Complete configuration example for claude_desktop_config.json

{
  "mcpServers": {
    "pastemyst": {
      // Use node to run the compiled JavaScript
      "command": "node",
      
      // Path to the built index.js (use absolute path)
      "args": [
        "C:/Users/YourName/pastemyst-mcp/build/index.js"
      ],
      
      // Environment variables
      "env": {
        // Optional: Your PasteMyst API token
        // Get it from https://paste.myst.rs (Profile → Settings)
        "PASTEMYST_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

// Configuration WITHOUT API token (read-only mode)
{
  "mcpServers": {
    "pastemyst": {
      "command": "node",
      "args": [
        "C:/Users/YourName/pastemyst-mcp/build/index.js"
      ]
    }
  }
}

// Multiple MCP servers example
{
  "mcpServers": {
    "pastemyst": {
      "command": "node",
      "args": ["C:/path/to/pastemyst-mcp/build/index.js"],
      "env": {
        "PASTEMYST_API_TOKEN": "your_token"
      }
    },
    "other-server": {
      "command": "node",
      "args": ["C:/path/to/other-mcp/index.js"]
    }
  }
}