# Evernote — Pipedream Connect

> Best Note Taking App: Organize Your Notes with Evernote

- API slug: `evernote` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: File Storage
- Website: https://evernote.com
- This page (HTML): https://pipedream.com/apps/evernote
- Tools: 9 actions · 3 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: evernote`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "evernote",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Note:
const result = await mcp.callTool({
  name: "evernote-create-note",
  arguments: {
    title: "Title",
    content: "Content",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "evernote-create-note",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    evernote: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    content: "Content",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (9)

### `evernote-create-note` — Create Note (Write)

Creates a new note in Evernote. See the documentation

Full schema: https://pipedream.com/apps/evernote/actions/create-note.md

### `evernote-create-notebook` — Create Notebook (Write)

Creates a new notebook in Evernote. See the documentation

Full schema: https://pipedream.com/apps/evernote/actions/create-notebook.md

### `evernote-get-note` — Get Note (Read-only)

Get a note by ID. See the documentation

Full schema: https://pipedream.com/apps/evernote/actions/get-note.md

### `evernote-list-note-id-options` — List Note ID Options (Read-only)

Retrieves available options for the Note ID field.

Full schema: https://pipedream.com/apps/evernote/actions/list-note-id-options.md

### `evernote-list-notebook-guid-options` — List Notebook ID Options (Read-only)

Retrieves available options for the Notebook ID field.

Full schema: https://pipedream.com/apps/evernote/actions/list-notebook-guid-options.md

### `evernote-list-notebooks` — List Notebooks (Read-only)

List all notebooks in Evernote. See the documentation.

Full schema: https://pipedream.com/apps/evernote/actions/list-notebooks.md

### `evernote-list-notes` — List Notes (Read-only)

List all notes in Evernote. See the documentation.

Full schema: https://pipedream.com/apps/evernote/actions/list-notes.md

### `evernote-list-tag-guids-options` — List Tag IDs Options (Read-only)

Retrieves available options for the Tag IDs field.

Full schema: https://pipedream.com/apps/evernote/actions/list-tag-guids-options.md

### `evernote-update-note` — Update Note (Write)

Updates an existing note in Evernote. See the documentation

Full schema: https://pipedream.com/apps/evernote/actions/update-note.md

## Triggers (3)

### `evernote-new-note` — New Note Created (Polling)

Emit new event when a note is created in Evernote.

Full schema: https://pipedream.com/apps/evernote/triggers/new-note.md

### `evernote-new-notebook` — New Notebook Created (Polling)

Emit new event when a notebook is created in Evernote.

Full schema: https://pipedream.com/apps/evernote/triggers/new-notebook.md

### `evernote-new-tag` — New Tag Created (Polling)

Emit new event when a new tag is created in Evernote. Useful for tracking new organizational labels.

Full schema: https://pipedream.com/apps/evernote/triggers/new-tag.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
