- Home
- MCP servers
- Perplexity Comet
Perplexity Comet
- typescript
17
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"rapiercraft-perplexity-comet-mcp": {
"command": "node",
"args": [
"/path/to/perplexity-comet-mcp/dist/index.js"
],
"env": {
"COMET_PATH": "<path-to-comet-executable>",
"COMET_PORT": "9223"
}
}
}
}Perplexity Comet MCP is a server that connects Claude Code with Perplexity’s Comet browser, enabling autonomous web browsing, research workflows, and multi-tab browser control while you focus on coding tasks. It provides a stable bridge to run browser actions from your MCP client and manage browser sessions efficiently.
How to use
You integrate this MCP server with your MCP client to orchestrate browsing tasks from your IDE or editor. Start by launching the MCP bridge, then connect your client to the local MCP endpoint. Use the bridge to initiate autonomous browsing, trigger agentic actions from natural prompts, and manage multiple browser tabs as needed. You can perform deep research, access login-protected content, and extract data while Claude codes in the background.
How to install
Prerequisites: Node.js 18 or higher, Perplexity Comet Browser installed, Claude Code or a compatible MCP client.
npm install -g perplexity-comet-mcp
Install from source: clone the repository, install dependencies, and build the project.
git clone https://github.com/RapierCraft/perplexity-comet-mcp.git
cd perplexity-comet-mcp
npm install
npm run build
Configure Claude Code to use the MCP bridge by adding a server entry. The bridge runs as a local stdio server that you start with Node and the built index file.
{
"mcpServers": {
"comet_bridge": {
"command": "node",
"args": ["/path/to/perplexity-comet-mcp/dist/index.js"]
}
}
}
Additional installation notes for Windows users
If you need a Windows-specific path, use an absolute path to the built index script.
Available tools
comet_connect
Establish and auto-start a connection to the Comet browser; returns the connection status.
comet_ask
Send a prompt to Comet and receive a complete response; can auto-trigger agentic browsing for URLs and actions.
comet_poll
Check ongoing task progress and retrieve final responses when complete.
comet_stop
Halt the current agentic task if it deviates from intended flow.
comet_screenshot
Capture a screenshot of the current browser view.
comet_tabs
Manage open browser tabs, including listing, switching, and closing with tab protection.
comet_mode
Switch between search, research, labs, or learn modes for different workflows.
comet_upload
Upload files to file input elements on web pages for attachments or submissions.