# Inoreader — Pipedream Connect

> Build your own newsfeed

- API slug: `inoreader` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://www.inoreader.com/
- Managed OAuth scopes: `read` · `write`
- This page (HTML): https://pipedream.com/apps/inoreader
- Tools: 2 actions · 4 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: inoreader`

```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": "inoreader",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run List Tag Name Options:
const result = await mcp.callTool({
  name: "inoreader-list-tag-name-options",
  arguments: {},
})
```

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

## API proxy

For a Inoreader endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://www.inoreader.com/reader/api/0/user-info

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly93d3cuaW5vcmVhZGVyLmNvbS9yZWFkZXIvYXBpLzAvdXNlci1pbmZv?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.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: "inoreader-list-tag-name-options",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    inoreader: { authProvisionId: "apn_xxxxxxx" },
  },
})
```

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

## Actions (2)

### `inoreader-list-tag-name-options` — List Tag Name Options (Read-only)

Retrieves available options for the Tag Name field.

Full schema: https://pipedream.com/apps/inoreader/actions/list-tag-name-options.md

### `inoreader-subscribe-to-feed` — Subscribe To Feed (Write)

Subscribe to a feed. See the Documentation

Full schema: https://pipedream.com/apps/inoreader/actions/subscribe-to-feed.md

## Triggers (4)

### `inoreader-new-article-in-folder` — New Article In Folder (Polling)

Emit new event when a new article is added to a folder. See the Documentation

Full schema: https://pipedream.com/apps/inoreader/triggers/new-article-in-folder.md

### `inoreader-new-broadcasted-article` — New Broadcasted Article (Polling)

Emit new event when a new broadcasted article is added. See the Documentation

Full schema: https://pipedream.com/apps/inoreader/triggers/new-broadcasted-article.md

### `inoreader-new-starred-article` — New Starred Article (Polling)

Emit new event when a new starred article is added. See the Documentation

Full schema: https://pipedream.com/apps/inoreader/triggers/new-starred-article.md

### `inoreader-new-subscription` — New Subscription (Polling)

Emit new event when a new subscription is added. See the Documentation

Full schema: https://pipedream.com/apps/inoreader/triggers/new-subscription.md

---

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