Best Business Applications MCP Servers for VS Code / GitHub Copilot
Connect business applications tools to VS Code / GitHub Copilot using MCP servers. These servers let VS Code / GitHub Copilot interact with business applications resources, enabling powerful AI-assisted workflows for developers.
15 Business Applications Servers for VS Code / GitHub Copilot
Google Drive
File storage and document collaboration
Google Maps
Location services and mapping integration
Slack
Team communication and collaboration
Stripe
Payment processing and financial operations
Notion
Workspace and knowledge management
Jira
Issue tracking and project management
Linear
Modern issue tracking for software teams
Discord
Discord bot integration and server management
SendGrid
Email delivery and marketing platform
Shopify
E-commerce platform integration
Confluence
Team collaboration and documentation
Zoom
Video conferencing and meeting automation
HubSpot
CRM and marketing automation platform
Salesforce
Enterprise CRM and cloud platform
Zapier
Workflow automation across 8,000+ apps
VS Code / GitHub Copilot Configuration
Add business applications MCP servers to your VS Code / GitHub Copilot configuration at .vscode/settings.json:
{
"github.copilot.chat.mcp.servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token_here"
}
},
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost:5432/mydb"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_brave_api_key_here"
}
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}