Commit the config, not the key
VS Code prompts each developer for the key once and stores it securely.
GitHub · Coding agents
Copilot agent mode discovers MCP servers from .vscode/mcp.json. Add the registry with a prompted secret, commit the file, and every contributor’s Copilot reads the same approved engineering knowledge.
Why pair them
VS Code prompts each developer for the key once and stores it securely.
Copilot lists browse, search_pages, and get_page as tools it can call while it works.
The team edits pages in the registry; Copilot only reads what a reviewer published.
Setup
You need two values from an agent page in Memrio: the workspace MCP URL and an API key. Examples use https://memrio.ai/api/mcp/acme — swap in yours.
Use an input so the key is prompted instead of committed.
{
"inputs": [
{
"type": "promptString",
"id": "memrio-key",
"description": "Memrio agent API key",
"password": true
}
],
"servers": {
"memrio": {
"type": "http",
"url": "https://memrio.ai/api/mcp/acme",
"headers": {
"Authorization": "Bearer ${input:memrio-key}"
}
}
}
}Open the file and click Start above the server entry, or run MCP: List Servers from the command palette. Paste the key when prompted.
Switch Copilot Chat to Agent mode. The registry tools appear under the tools picker. Ask a question and Copilot browses the page set first.
Try it
“Use the memrio tools to find our logging standards, then update this service to follow them.”
FAQ
Other integrations