# How to connect Perplexity AI to Hermes Agent (paste one key, 9 tools)

> Connect Perplexity AI to Hermes with ClawLink: paste your Perplexity AI key once and 9 tools work from chat. No MCP server to run, nothing stored on your machine.

Web version: https://claw-link.dev/hermes/perplexity-ai

Most guides for giving Hermes Agent Perplexity AI access start with registering your own OAuth app or pasting API keys into env files, then leave the token refresh and tool wiring to you. ClawLink gives Hermes a more practical Perplexity AI setup: pair once in the browser and your always-on Hermes agent can act on Perplexity AI for you, reading and doing real work on your behalf with no auth, token refresh, or tool wiring to build yourself.

**Start here — paste this into Hermes to set up ClawLink:**

> Set up ClawLink for Hermes and tell me when it's ready.
> 1. Install the plugin: `hermes plugins install ClawLink-HQ/hermes-plugin --enable`
> 2. Start pairing with `hermes clawlink begin`. It prints an approval link, so show me the link and stop, don't wait.
> 3. I'll approve it in my browser, then reply "approved".
> 4. When I say approved, finish setup: `hermes clawlink finish`
> 5. Then run `hermes clawlink test` and tell me whether ClawLink is ready.

## Setup

It takes three steps to connect Hermes to Perplexity AI.

1. **Install ClawLink** — add the plugin to Hermes Agent once.
2. **Connect Perplexity AI** — one-click OAuth in the ClawLink dashboard.
3. **Use it from chat** — ask Hermes Agent in plain English.

**Alternative for any agent (no plugin needed):** if the Hermes Agent plugin route isn't available or doesn't work, any AI agent with shell access can use the ClawLink CLI instead:

```bash
npx -y @useclawlink/cli login          # sign in via browser — no API key to paste
npx -y @useclawlink/cli connect perplexity-ai  # connect Perplexity AI (browser OAuth)
npx -y @useclawlink/cli actions perplexity-ai  # list available actions
npx -y @useclawlink/cli run perplexity-ai <action> --input '<json>'  # execute (add --confirm for writes)
```

### Install by command

The prompt above walks Hermes through this. By hand, it is four commands and a browser approval:

```bash
hermes plugins install ClawLink-HQ/hermes-plugin --enable
hermes clawlink begin    # prints an approval link — open it and approve
hermes clawlink finish   # after approving in the browser
hermes clawlink test
```

Then connect Perplexity AI in the [ClawLink dashboard](https://claw-link.dev/dashboard) — paste your Perplexity AI API key once.

Verify the connection by asking Hermes:

> Use Perplexity AI to perplexityai create async chat completion and walk me through the result in plain English.

### Using a different agent?

The Hermes plugin is one client of ClawLink's MCP server. Claude Code, Cursor, Codex, or any agent that can run a shell command pairs with the same ClawLink account through the CLI:

```bash
npx -y @useclawlink/cli login
```

`login` opens the same browser approval and stores a credential locally. Once Perplexity AI is connected in the dashboard, that agent calls the same 9 Perplexity AI tools over MCP. Full setup for MCP clients and shell agents: [connect apps to any AI agent](https://claw-link.dev/learn/connect-apps-to-any-ai-agent).

## Perplexity AI MCP for Hermes

Looking for a Perplexity AI MCP server for Hermes Agent? ClawLink connects Perplexity AI to Hermes Agent and exposes 9 Perplexity AI tools your agent can call over [MCP](https://claw-link.dev/learn/what-is-an-mcp-server), with [hosted auth](https://claw-link.dev/learn/oauth-for-ai-agents) and nothing to run or maintain yourself. Using OpenClaw instead? The [OpenClaw Perplexity AI integration](https://claw-link.dev/openclaw/perplexity-ai) works the same way.

The Hermes Perplexity integration covers the full Perplexity API surface ClawLink exposes: Sonar chat completions, raw web search, and embeddings, nine tools in total.

## What the Hermes Agent Perplexity AI integration can do

9 Perplexity AI tools are ready for Hermes Agent once the account is connected.

### All 9 Perplexity AI tools for Hermes

| Tool | What it does |
|---|---|
| **Create async chat completion** `perplexityai_create_async_chat_completion` | Create Async Chat Completion (POST /v1/async/sonar). Submits an asynchronous chat completion request for long-running tasks. |
| **Create chat completion** `perplexityai_create_chat_completion` | Perplexity Sonar Chat Completions (POST /v1/sonar). Generates web-grounded conversational AI responses with citations. |
| **Create contextualized embeddings** `perplexityai_create_contextualized_embeddings` | Create Contextualized Embeddings (POST /v1/contextualizedembeddings). Generates document-aware embeddings where chunks from the same document share context. |
| **Create embeddings** `perplexityai_create_embeddings` | Generate vector embeddings for independent texts (queries, sentences, documents). This action takes one or more input texts and generates vector embeddings using Perplexity AI's embedding models. |
| **Execute agent** `perplexityai_execute_agent` | Create Agent Response (POST /v1/agent). Orchestrates multi-step agentic workflows with built-in tools (web search, URL fetching, function calling), reasoning, and multi-model support. |
| **Get async chat completion** `perplexityai_get_async_chat_completion` | Get Async Chat Completion (GET /v1/async/sonar/\{id\}). Retrieves the result of an asynchronous chat completion request by its ID. Use this to poll for the result after creating an async job. |
| **List async chat completions** `perplexityai_list_async_chat_completions` | List Async Chat Completions (GET /v1/async/sonar). Retrieves a list of all asynchronous chat completion requests for the authenticated user. |
| **List models** `perplexityai_list_models` | List Models (GET /v1/models). Lists models available for the Agent API. Returns model identifiers that can be used with the Agent endpoint. |
| **Search** `perplexityai_search` | Search the Web (POST /search). Returns raw, ranked web search results directly from Perplexity's index without LLM processing. Faster and cheaper than chat completions when you need raw results. |

## Example prompts

**Perplexityai Create Async Chat Completion**

> Use Perplexity AI to perplexityai create async chat completion and walk me through the result in plain English.

**Perplexityai Create Chat Completion**

> Use Perplexity AI to perplexityai create chat completion and walk me through the result in plain English.

**Perplexityai Create Contextualized Embeddings**

> Use Perplexity AI to perplexityai create contextualized embeddings and walk me through the result in plain English.

**Perplexityai Create Embeddings**

> Use Perplexity AI to perplexityai create embeddings and walk me through the result in plain English.

## ClawLink vs. building it yourself

The alternative to ClawLink is usually manual API key setup plus your own token handling, permission troubleshooting, and tool plumbing for Hermes Agent. That is fine if you want to build and maintain the integration yourself. Most teams just want Perplexity AI working from chat.

| | Manual | ClawLink |
|---|---|---|
| **Credential handling** | Collect, validate, store, and rotate the Perplexity AI API key yourself, then make sure every tool call uses the right account. | Users complete the hosted ClawLink setup once and the connected Perplexity AI account becomes available to the agent without you building credential management. |
| **Ongoing maintenance** | You own refresh logic, permission debugging, environment config, and every provider-specific edge case for Perplexity AI. | ClawLink handles the repetitive integration plumbing so your team can focus on the workflow instead of the infrastructure. |
| **Agent usability** | You still need to expose the right Perplexity AI actions to the runtime in a format your agent can reliably use. | 9 tools for Perplexity AI are already exposed through ClawLink, so the agent can read and act from chat immediately. |

## ClawLink vs. Composio

Composio also exposes Perplexity AI to AI agents. It is developer infrastructure: Python and TypeScript SDKs, an MCP server, and a catalog past 1,000 apps, aimed at teams shipping agent products. ClawLink is built for Hermes Agent users instead. You install the plugin once, connect Perplexity AI in the browser, and the 9 tools above work from chat. There is no SDK and no config file, and the Perplexity AI key you paste at setup is stored server-side rather than kept in your environment. Choosing between them? Read the full [Composio alternatives](https://claw-link.dev/hub/composio-alternatives) comparison.

### Hermes paired but still can't use Perplexity AI
Pairing is a two-step handshake: run `hermes clawlink begin`, approve the link in your browser, then run `hermes clawlink finish`. If you ran finish before approving, or the approval link expired, run `hermes clawlink begin` again to get a fresh link. Confirm the plugin was installed with `--enable`, then verify with `hermes clawlink test`.

### Connection succeeds but no tools appear
Reconnect Perplexity AI from the dashboard, then start a fresh chat if the runtime still has the old tool catalog loaded.

### "Tool schema not loaded yet" error when calling Perplexity AI tools
Perplexity AI tool schemas load on demand the first time a tool runs and are cached after that, so this error usually clears on its own: wait a few seconds and retry the same request. If every Perplexity AI call keeps failing with it in a fresh chat, reconnect from the dashboard, and contact support if it still persists — that pattern points to a configuration problem on our side, not something you can fix by reconnecting again.

### Perplexity AI returns 403 or "permission denied" on one action while others work
Two usual causes. The connected account may not have access to the specific workspace, inbox, store, or project in the request — check that first. If access looks right, the agent may have sent a placeholder value (like "YOUR_ID" or an example id from documentation) instead of a real one: ask it to run a list or search tool first, then retry the action with a real id from those results. Most failures at this stage are one of these two, not ClawLink bugs.

### API key setup works but results look incomplete
Double-check that the API key for Perplexity AI has the right scopes or account access. A valid key can still be too limited for some reads or writes.

### Is there a Hermes Agent Perplexity AI integration?
Yes. ClawLink is the fastest way to connect Hermes to Perplexity AI: link your Perplexity AI account once in the browser and Hermes Agent can call the Perplexity AI API through 9 ready-made tools — no custom code or token handling.

### How do I connect Perplexity AI to Hermes with ClawLink?
Install the plugin with `hermes plugins install ClawLink-HQ/hermes-plugin --enable`, then pair once: run `hermes clawlink begin`, approve the link in your browser, and run `hermes clawlink finish`. Connect Perplexity AI in the dashboard and Hermes can use it from the next message — no config files, and the Perplexity AI key you paste is stored server-side instead of in your environment.

### How long does it take to connect Perplexity AI to Hermes Agent?
About two minutes. Sign in, click Connect next to Perplexity AI in the dashboard, authenticate, and Hermes Agent can use it from the next chat message.

### Why use ClawLink instead of wiring Perplexity AI up myself?
The alternative to ClawLink is usually manual API key setup plus your own token handling, permission troubleshooting, and tool plumbing for Hermes Agent. That is fine if you want to build and maintain the integration yourself. Most teams just want Perplexity AI working from chat.

### Does the Hermes Agent Perplexity integration include the Perplexity API?
Yes. Every call goes through the Perplexity API: Sonar chat completions (sync and async), raw web search, contextualized and standard embeddings, agent execution, and model listing. The table above lists all nine tools.

### Hermes paired but still can't use Perplexity AI
Pairing is a two-step handshake: run `hermes clawlink begin`, approve the link in your browser, then run `hermes clawlink finish`. If you ran finish before approving, or the approval link expired, run `hermes clawlink begin` again to get a fresh link. Confirm the plugin was installed with `--enable`, then verify with `hermes clawlink test`.

## Related

- [Hermes DataRobot integration](https://claw-link.dev/hermes/datarobot) — DataRobot is a machine learning platform that automates model building, deployment, and monitoring, enabling organizations to derive predictive insights from large datasets.
- [Chatbotkit tools](https://claw-link.dev/hermes/chatbotkit) — ChatBotKit is a platform that enables developers to build and manage AI-powered chatbots, offering comprehensive APIs and SDKs for seamless integration into applications.
- [Griptape](https://claw-link.dev/hermes/griptape) — Griptape is a comprehensive platform offering tools and frameworks for building, deploying, and scaling generative AI applications.
