Skip to content

Commit 163e8f9

Browse files
committed
Expand README.md: add JetBrains AI Assistant setup instructions and MCP server configuration details.
1 parent 8f82351 commit 163e8f9

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,63 @@ Use the IDE UI: Q panel → Chat → tools icon → Add MCP Server → choose ht
677677

678678
</details>
679679

680+
<details>
681+
<summary><b>JetBrains AI Assistant</b></summary>
682+
683+
> **Note:** JetBrains AI Assistant requires the `mcp-remote` workaround for connecting to remote HTTP MCP servers.
684+
685+
**Prerequisites:**
686+
```bash
687+
npm install -g mcp-remote
688+
```
689+
690+
**Config file:** Settings/Preferences → AI Assistant → Model Context Protocol → Configure
691+
692+
Add this configuration:
693+
694+
```json
695+
{
696+
"mcpServers": {
697+
"codealive": {
698+
"command": "npx",
699+
"args": [
700+
"mcp-remote",
701+
"https://mcp.codealive.ai/api",
702+
"--header",
703+
"Authorization: Bearer ${CODEALIVE_API_KEY}"
704+
],
705+
"env": {
706+
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
707+
}
708+
}
709+
}
710+
}
711+
```
712+
713+
**For self-hosted deployments**, replace the URL:
714+
```json
715+
{
716+
"mcpServers": {
717+
"codealive": {
718+
"command": "npx",
719+
"args": [
720+
"mcp-remote",
721+
"http://your-server:8000/api",
722+
"--header",
723+
"Authorization: Bearer ${CODEALIVE_API_KEY}"
724+
],
725+
"env": {
726+
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
727+
}
728+
}
729+
}
730+
}
731+
```
732+
733+
See [JetBrains MCP Documentation](https://www.jetbrains.com/help/ai-assistant/mcp.html#workaround-for-remote-servers) for more details.
734+
735+
</details>
736+
680737
---
681738

682739
## 🔧 Advanced: Local Development

0 commit comments

Comments
 (0)