Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,25 @@ Add this to your Opencode configuration file. See [Opencode MCP docs](https://op

</details>

<details>
<summary><b>Install in AdaL CLI</b></summary>

Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info.
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation link points to the general AdaL GitHub repository (https://github.com/SylphAI-Inc/AdaL) rather than specific MCP documentation. This is inconsistent with other sections which link to specific MCP documentation pages. For example, Claude Code links to https://code.claude.com/docs/en/mcp and Opencode links to https://opencode.ai/docs/mcp-servers. Please verify that AdaL has MCP-specific documentation and update the link accordingly, or use a more specific anchor within the repository.

Suggested change
Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info.
Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL?tab=readme-ov-file#mcp-servers) for more info.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The introductory text says "Run these commands" (plural), but the pattern should match other sections. Claude Code (line 88) says "Run this command" (singular) even though it has multiple examples for local and remote. Consider using "Run one of these commands" or following the existing pattern of other sections for consistency.

Suggested change
Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info.
Run one of the following commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info.

Copilot uses AI. Check for mistakes.

#### AdaL CLI Remote Server Connection

```bash
/mcp add context7 --transport http --url https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY:YOUR_API_KEY"
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The header format "CONTEXT7_API_KEY:YOUR_API_KEY" uses a colon without a space, which is inconsistent with other sections. In the Claude Code section (line 99), it uses "CONTEXT7_API_KEY: YOUR_API_KEY" with a space after the colon. Please use consistent header formatting across all sections.

Suggested change
/mcp add context7 --transport http --url https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY:YOUR_API_KEY"
/mcp add context7 --transport http --url https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY: YOUR_API_KEY"

Copilot uses AI. Check for mistakes.
```

#### AdaL CLI Local Server Connection

```bash
/mcp add context7 --command npx --args "-y,@upstash/context7-mcp,--api-key,YOUR_API_KEY"
```

</details>

<details>
<summary><b>Install with ctx7 setup</b></summary>

Expand All @@ -148,7 +167,7 @@ Set up Context7 MCP for your coding agents:
npx ctx7 setup
```

Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, or `--opencode` to target a specific agent.
Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, `--opencode`, or `--adal` to target a specific agent.
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation claims that --adal is a valid targeting option for ctx7 setup, but this flag is not implemented in the CLI code. The SetupAgent type in packages/cli/src/setup/agents.ts:5 only includes "claude", "cursor", and "opencode". The setup command in packages/cli/src/commands/setup.ts does not have an --adal option. Either remove the --adal reference from this line or implement the functionality in the CLI first.

Suggested change
Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, `--opencode`, or `--adal` to target a specific agent.
Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, or `--opencode` to target a specific agent.

Copilot uses AI. Check for mistakes.

</details>

Expand Down
Loading