Best Cloud Services MCP Servers for Cline
Connect cloud services tools to Cline using MCP servers. These servers let Cline interact with cloud services resources, enabling powerful AI-assisted workflows for developers.
12 Cloud Services Servers for Cline
AWS Labs MCP Suite
Comprehensive AWS services integration suite
Kubernetes
Native Kubernetes API integration for cluster management
Docker
Container management and orchestration
Terraform
Infrastructure as Code management
Datadog
Cloud monitoring and security platform
Azure
Microsoft Azure cloud services integration
Google Cloud Platform
Google Cloud services integration
Vercel
Frontend deployment and hosting platform
Netlify
JAMstack deployment and hosting
Cloudflare
Edge computing and CDN services
Salesforce
Enterprise CRM and cloud platform
Supabase MCP
Postgres database, auth, and storage management via Supabase
Cline Configuration
Add cloud services MCP servers to your Cline configuration at VS Code settings (Cline extension settings):
{
"cline.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"]
}
}
}