Last active
October 24, 2025 20:35
-
-
Save sgbaird/39a43dce96706ca282aedabb7668e2e6 to your computer and use it in GitHub Desktop.
My running attempt at creating an MCP config for GitHub Copilot Coding agent (note this is for ones to be adding to settings on a GitHub repo, see `https://github.com/<username>/<repository>/settings/copilot/coding_agent`). See github docs: https://docs.github.com/en/enterprise-cloud@latest/copilot/using-github-copilot/coding-agent/extending-cop…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "mcpServers": { | |
| "Perplexity": { | |
| "type": "local", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "server-perplexity-ask" | |
| ], | |
| "env": { | |
| "PERPLEXITY_API_KEY": "COPILOT_MCP_PERPLEXITY_API_KEY" | |
| }, | |
| "tools": ["*"] | |
| }, | |
| "context7": { | |
| "type": "local", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@upstash/context7-mcp" | |
| ], | |
| "tools": [ | |
| "resolve-library-id", | |
| "get-library-docs" | |
| ] | |
| }, | |
| "serena": { | |
| "type": "local", | |
| "command": "uvx", | |
| "args": [ | |
| "--from","git+https://github.com/oraios/serena", | |
| "serena","start-mcp-server", | |
| "--context","ide-assistant", | |
| "--project","$GITHUB_WORKSPACE" | |
| ], | |
| "tools": [ | |
| "find_symbol","find_referencing_symbols","get_symbols_overview", | |
| "find_file","read_file","list_dir","search_for_pattern", | |
| "rename_symbol","replace_symbol_body","insert_before_symbol","insert_after_symbol", | |
| "replace_regex","create_text_file" | |
| ] | |
| } | |
| } | |
| } |
Author
Author
https://shopify.dev/docs/apps/build/storefront-mcp (EDIT: probably not what I'm looking for, seems to be for vendors)
https://www.reddit.com/r/shopify/comments/1kwnbc2/have_you_tested_the_shopify_mcp/
https://www.reddit.com/r/shopify/comments/1oa4poj/chatgpt_is_now_recommending_shopify_products_to/
Author
Considering adding firecrawl, getting popular on github mcp registry:
"firecrawl-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"firecrawl-mcp"
],
"tools": ["*"],
"env": {
"FIRECRAWL_API_KEY": "COPILOT_MCP_FIRECRAWL_API_KEY"
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I added Serena, but it's not clear to me what the best way to add is and I haven't tested yet (i.e., with a JSON config like above, especially with coding agent). Not sure if uvx is supported. Docker is an alternative. Will need to test and come back
See https://chatgpt.com/share/68f69c18-7fc0-8007-a55d-b0234475b929
(see also https://chatgpt.com/share/68f69c37-06c8-8007-954b-b326a4ebc6e4)