Skip to content

Misplaced comma in README.md #8

Closed
@Mlabarbara

Description

@Mlabarbara

Issue in install portion, misplaced comma will lead to error:

Install
Claude Desktop
Configure Claude Desktop to recognize the MCP server.

Open your Claude Desktop configuration and edit the following file:

On macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

"mcpServers": {
  "mcp-server-rag-web-browser": {
    "command": "npx",
    "args": [
      "/path/to/mcp-server-rag-web-browser/build/index.js",
    ]
    "env": {
       "APIFY-API-TOKEN": "your-apify-api-token"
    }
  }
}

Should be:

    "command": "npx",
    "args": [
      "/path/to/mcp-server-rag-web-browser/build/index.js"
    ],
    "env": {
       "APIFY-API-TOKEN": "your-apify-api-token"
    }
  }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions