Question
How to use WebPros Dashboard MCP?
Answer
WebPros Dashboard MCP can be used like any other MCP which can be integrated in different ways, for example:
- Using your preferred Code Editor or IDE
- Directly via CLI in Claude or Copilot
Below are instructions to the most popular setups:
Run the next CLI command in the terminal:
claude mcp add --transport http webpros-dashboard https://mcp.webpros.com/api/mcp --header "Authorization: Bearer WEBPROS_MCP_KEY"
Note: replace WEBPROS_MCP_KEY with a real key your created using How to create WebPros Dashboard MCP key?
It is possible to configure MCP at Global or Workspace levels.
Global:
- In VS Code go to File > Open...
-
Chose the file based on your operating system:
- macOS:
~/Library/Application Support/Code/User/mcp.json - Windows:
%APPDATA%\Code\User\mcp.json - Linux:
~/.config/Code/User/mcp.json
Note: If the file doesn't exist yet, create it at the same location as above.
- macOS:
-
Paste the following content into the file and save it:
{ "servers": { "webpros-dashboard": { "type": "http", "url": "https://mcp.webpros.com/api/mcp", "headers": { "Authorization": "Bearer WEBPROS_MCP_KEY" } } } } - A small Start link appears just above "webpros-dashboard" - click it to connect.
Note: replace WEBPROS_MCP_KEY with a real key your created using How to create WebPros Dashboard MCP key?
Workspace:
- Open your project folder in VS Code at File > Open Folder...
-
In the Explorer sidebar hover over the project root and click the New Folder icon. Name it exactly:
.vscodeNote: If a
.vscodefolder already exists, skip this step. - Select the
.vscodefolder, click the New File icon, and name it exactly:mcp.json -
Paste the following content into the file and save it:
{ "servers": { "webpros-dashboard": { "type": "http", "url": "https://mcp.webpros.com/api/mcp", "headers": { "Authorization": "Bearer WEBPROS_MCP_KEY" } } } } - A small Start link appears just above "webpros-dashboard" - click it to connect.
Note: replace WEBPROS_MCP_KEY with a real key your created using How to create WebPros Dashboard MCP key?
- Open Settings and go to Tools > AI Assistant > Model Context Protocol (MCP) page.
- Click + Add (or New MCP Server) button.
-
Paste the JSON below:
{ "mcpServers": { "webpros-dashboard": { "url": "https://mcp.webpros.com/api/mcp", "headers": { "Authorization": "Bearer WEBPROS_MCP_KEY" } } } } - Click OK or Apply. The server should show a green "connected" indicator once it loads its tools:
Note: replace WEBPROS_MCP_KEY with a real key your created using How to create WebPros Dashboard MCP key?
Run the next CLI command in the terminal:
copilot mcp add --transport http --header "Authorization: Bearer WEBPROS_MCP_KEY" webpros-dashboard https://mcp.webpros.com/api/mcp
Note: replace WEBPROS_MCP_KEY with a real key your created using How to create WebPros Dashboard MCP key?
Comments
Please sign in to leave a comment.