-
Notifications
You must be signed in to change notification settings - Fork 63
fix: adiciona servidores MCP faltantes nos configs de IDE #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json | ||
| language: "pt-BR" | ||
| tone_instructions: "Seja profissional, construtivo e foque em qualidade de código. Escreva em português." | ||
| early_access: false | ||
|
|
||
| reviews: | ||
| auto_review: | ||
| enabled: true | ||
| base_branches: [main, master] | ||
| drafts: false | ||
| request_changes_workflow: true | ||
| high_level_summary: true | ||
| poem: false | ||
| review_status: true | ||
| collapse_walkthrough: false | ||
|
|
||
| path_instructions: | ||
| - path: "**/*.json" | ||
| instructions: | | ||
| Validar JSON: sem trailing commas, chaves entre aspas. | ||
| Configs MCP: verificar `mcpServers`, `command`, `args` estão bem formados. | ||
| Sem secrets/API keys em valores literais — usar env vars. | ||
| - path: "**/Dockerfile*" | ||
| instructions: | | ||
| Multi-stage quando aplicável. Imagens base com tag pinned (sem :latest). | ||
| Sem segredos no build; usar build args ou secrets do Docker. | ||
| USER não-root quando possível. | ||
| - path: "**/*.yml" | ||
| instructions: | | ||
| YAML: validar indentação. Sem secrets hardcoded. | ||
| docker-compose: versão fixa, volumes mapeados conscientemente. | ||
| - path: ".github/**" | ||
| instructions: Segurança, secrets, sintaxe. | ||
|
|
||
| chat: | ||
| auto_reply: true |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,32 @@ | ||||||||||||||||||||||
| # Copilot Instructions — mcp-ecosystem | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Project Overview | ||||||||||||||||||||||
| Repositório de configuração e orquestração de servidores MCP (Model Context Protocol), com Docker/Compose. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Stack | ||||||||||||||||||||||
| - **Docker** + **docker-compose** para containers MCP | ||||||||||||||||||||||
| - Configs em **JSON** (mcp servers config) | ||||||||||||||||||||||
| - **YAML** para compose e workflows | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Conventions | ||||||||||||||||||||||
| - JSON válido sem trailing commas; chaves entre aspas | ||||||||||||||||||||||
| - Configs MCP com `mcpServers`, `command`, `args` bem formados | ||||||||||||||||||||||
| - Sem secrets em valores literais — env vars | ||||||||||||||||||||||
| - Dockerfiles: imagens base com tag pinned (sem `:latest`) | ||||||||||||||||||||||
| - docker-compose: versão fixa, volumes conscientes | ||||||||||||||||||||||
| - YAML: indentação 2 espaços, sem tabs | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Folder Structure | ||||||||||||||||||||||
| - `configs/` ou raiz — JSONs de configuração MCP | ||||||||||||||||||||||
| - `docker/` ou `Dockerfile*` — definições de container | ||||||||||||||||||||||
| - `docker-compose.yml` — orquestração | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Development | ||||||||||||||||||||||
| - `docker compose up -d` — sobe stack | ||||||||||||||||||||||
| - `docker compose logs -f <service>` — logs | ||||||||||||||||||||||
| - `docker compose down` — para | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Critical Files | ||||||||||||||||||||||
| - `docker-compose.yml` — orquestração principal | ||||||||||||||||||||||
| - `configs/*.json` — definições MCP | ||||||||||||||||||||||
| - `Dockerfile*` — imagens custom | ||||||||||||||||||||||
|
Comment on lines
+29
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Corrija o caminho dos arquivos críticos para refletir a estrutura real. A linha 31 menciona 🗂️ Caminhos corretos ## Critical Files
- `docker-compose.yml` — orquestração principal
-- `configs/*.json` — definições MCP
+- `presets/*.json` — configurações preset
+- `servers/*.json` — definições de servidores MCP
+- `ide-configs/*/sample-config.json` — exemplos para IDEs
- `Dockerfile*` — imagens customBased on learnings and context from README.md showing the actual directory structure with presets/ and servers/ folders. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,11 +7,22 @@ | |
| "desktop-commander": { | ||
| "command": "npx", | ||
| "args": ["-y", "@anthropic/desktop-commander-mcp"] | ||
| }, | ||
| "playwright": { | ||
| "command": "npx", | ||
| "args": ["-y", "@anthropic/playwright-mcp"] | ||
| }, | ||
| "exa": { | ||
| "command": "npx", | ||
| "args": ["-y", "exa-mcp-server"], | ||
| "env": { | ||
| "EXA_API_KEY": "${EXA_API_KEY}" | ||
| } | ||
| } | ||
|
Comment on lines
+10
to
21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify the `@anthropic/playwright-mcp` package exists on npm
curl -s "https://registry.npmjs.org/@anthropic/playwright-mcp" | jq '{name: .name, version: ."dist-tags".latest, description: .description}'Repository: SynkraAI/mcp-ecosystem Length of output: 126 🏁 Script executed: #!/bin/bash
# Get the full response from npm registry for `@anthropic/playwright-mcp`
curl -s "https://registry.npmjs.org/@anthropic/playwright-mcp" | head -100
# Also check if the package exists at all by looking for error response
echo "---"
curl -s -w "\nHTTP Status: %{http_code}\n" "https://registry.npmjs.org/@anthropic/playwright-mcp"Repository: SynkraAI/mcp-ecosystem Length of output: 129 The Playwright MCP package does not exist—configuration will fail. The 🤖 Prompt for AI Agents |
||
| }, | ||
| "notes": { | ||
| "description": "Sample Cursor configuration for AIOS projects", | ||
| "preset": "aios-dev", | ||
| "documentation": "https://github.com/allfluence/mcp-ecosystem" | ||
| "preset": "aios-full", | ||
| "documentation": "https://github.com/SynkraAI/mcp-ecosystem" | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alinhe a estrutura de pastas com a organização real do repositório.
A descrição menciona
configs/(linha 20), mas oREADME.mddocumenta a estrutura real comopresets/,servers/eide-configs/. Isso pode confundir desenvolvedores que seguem este guia.📁 Estrutura correta baseada no README
Based on learnings and context from README.md that documents the actual folder structure: presets/, servers/, and ide-configs/.
📝 Committable suggestion
🤖 Prompt for AI Agents