Files
composiohq__composio/docs
palash-c af4cae6e7c docs: list POST /toolkits/multi as a read route for scoped API keys (#4539)
## Summary

Updates the Scoped Project API Key reference page to match the backend
fix in ComposioHQ/platform#13062
([PLEN-3940](https://linear.app/composio/issue/PLEN-3940/scoped-api-keys-post-toolkitsmulti-is-cataloged-as-write-so-read-only)).

`POST /toolkits/multi` only fetches toolkits, but it was cataloged as
the single write route of the Toolkits permission area, so a read-only
key got a 403 on it. The backend now treats it as a read, which leaves
Toolkits with no write routes.

- `/toolkits/multi` row: Write -> Read
- Toolkits available levels: "No access, Read only" (was all four
levels)
- Toolkits description: "View toolkits." (was "View and install
toolkits.")

## Merge order

Merge after ComposioHQ/platform#13062 is deployed, so the page does not
describe behavior that is not live yet.

Not in this PR: a changelog entry. It needs the backend deploy date.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-21 15:23:26 +04:00
..
2026-09-17 18:47:17 +00:00
2026-09-17 18:47:17 +00:00
2026-09-02 09:27:48 -04:00

Composio Docs

Documentation site for Composio, built with Fumadocs.

For issue triage, review, validation, and publication, follow Change the Composio docs.

Getting Started

bun install
bun run dev

Open http://localhost:3000.

Project Structure

docs/
├── app/                  # Next.js app router
├── content/              # MDX content
│   ├── docs/
│   ├── examples/
│   ├── changelog/
│   └── reference/
├── components/           # React components
├── lib/                  # Utilities
└── public/               # Static assets

Adding Content

Create an .mdx file in content/, add frontmatter, then add to meta.json:

---
title: Page Title
description: Brief description
---

Content here...

Components

<Tabs items={['Python', 'TypeScript']}>
  <Tab value="Python">...</Tab>
  <Tab value="TypeScript">...</Tab>
</Tabs>

<Callout type="info">Note</Callout>

<Cards>
  <Card title="Title" href="/path" />
</Cards>

Sidebar

Each folder has meta.json for ordering:

{
  "pages": ["page-one", "page-two"]
}

TypeScript Code Blocks

All TypeScript code blocks in MDX files are type-checked at build time using Twoslash. This ensures docs stay in sync with the SDK.

  • Use // @noErrors to skip checking for partial snippets
  • Use // ---cut--- to hide setup code from output
  • Run bun run build locally to validate before pushing

See the Twoslash guide for complete example patterns and troubleshooting.

Docs search uses Algolia when NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY is set; otherwise it falls back to the local Fumadocs /api/search endpoint for development and tests. The sync script builds a first-party index from MDX/OpenAPI/toolkit data (no crawler required), splits long pages into section-sized records, configures searchable attributes/custom ranking/distinct, requests clickAnalytics, and sends search result view/click events with search-insights.

NEXT_PUBLIC_ALGOLIA_APP_ID=62HI9PQZ1L # optional; default shown
NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY=...
NEXT_PUBLIC_ALGOLIA_INDEX_NAME=docs_composio # optional; default shown

Sync the Algolia index with an admin key:

ALGOLIA_APP_ID=62HI9PQZ1L
ALGOLIA_ADMIN_API_KEY=...
ALGOLIA_INDEX_NAME=docs_composio bun run sync:search

Preview the generated records or test live relevance:

bun run sync:search --dry-run --samples
ALGOLIA_SEARCH_API_KEY=... bun run test:search "oauth auth config" "gmail send email"

Commands

Command Description
bun run dev Dev server
bun run build Production build (validates TS code blocks)
bun run types:check Type check
bun run sync:search Sync docs search records to Algolia
bun run test:search Query the configured Algolia index from the terminal