Connect meu ecommerce MCP to VS Code and Copilot, in Agent mode, quotes shipping, issues labels and tracks Correios packages in the editor you already use. No integration to build or maintain.
Works with GitHub Copilot in VS Code, with one block in .vscode/mcp.json.
Free plan: 10 quotes, 10 tracking lookups and 10 labels a month, no credit card.
Illustrative values. VS Code asks for your confirmation before each tool runs.
"Quote shipping for order #48291 to CEP 20040-002": PAC and SEDEX with price and delivery time, in Copilot Chat.
"Issue the label for this order": you confirm and Copilot returns the label and the tracking code.
Point to a CSV of orders and Copilot quotes, issues and writes the tracking codes back into the file.
A customer complained about a delay? Ask Copilot and see the package's real status before touching the code.
Copilot writes the checkout quote against the REST API, already knowing the response format because it checked through the MCP.
Ask for a page where the customer types the code and sees the delivery timeline, with the lookup running on the backend.
Quick and simple. It's one block in VS Code's mcp.json and your store login opens in the browser, with no key to copy. No Correios integration to build or maintain.
Authentication, tool contracts, errors and limits, with copy-ready examples.
Open the dev centerPaste the server address and authorize your store in the browser. No key to keep and no header to configure.
https://app.meuecommerce.com.br/mcpCreate or open the project's .vscode/mcp.json. For a guided flow, run MCP: Add Server from the command palette.
Paste the block below. The server URL is all it needs.
Start the server from the shortcut that shows above it in the file and authorize your store in the browser.
Open Copilot Chat, choose Agent mode and ask: "quote shipping for this order".
{
"servers": {
"meu-ecommerce": {
"type": "http",
"url": "https://app.meuecommerce.com.br/mcp"
}
}
}Company account? On Copilot Business and Enterprise, your organization needs to allow MCP servers in Copilot.
Add meu ecommerce MCP to VS Code's mcp.json, open Copilot Chat in Agent mode and ask "quote shipping for order X to CEP Y". Copilot returns PAC and SEDEX with price and delivery time.
This page covers GitHub Copilot in VS Code, in Agent mode. Microsoft 365 Copilot is a different product, with a different way to connect.
No. With the URL in mcp.json, VS Code opens the login and you authorize your store in the browser.
On Copilot Business and Enterprise, MCP servers depend on an organization policy on GitHub. Ask whoever manages your company's account to enable it.
Yes. For checkout, the right path is the REST API: Copilot writes the call to POST /v1/rates and can use the MCP to see a real quote first. The dev center's docs for agents have the contracts in Markdown.
With the MCP, Copilot uses shipping tools that are ready, tested and maintained by us. You get security (authentication and Correios access stay on our side, with no credentials in your code), maintenance (when Correios changes rates, endpoints or rules, we update and nothing breaks) and support (if something goes wrong, you have someone to talk to). Integrating with Correios from scratch leaves the code and the maintenance to you.
Today it's Correios: quotes, labels with pre-posting and tracking. Other carriers come later.
Paste meu ecommerce MCP into VS Code's mcp.json and ask for your first Correios quote.