Quick Start Guide

Set up Model Context Protocol servers in your enterprise environment with GitHub Copilot integration.

Prerequisites

Ensure your development environment meets these requirements

Development Environment

  • IDE: VSCode, IntelliJ IDEA, or Eclipse
  • GitHub Copilot: Active subscription with Agent Mode enabled
  • Node.js: Version 18+ for MCP CLI tools
  • Enterprise Access: VPN connection and corporate authentication

Installation Steps

Follow these steps to set up MCP servers in your enterprise environment

Step 1: Install MCP CLI

Install the Model Context Protocol command-line interface globally on your development machine.

npm install -g @modelcontextprotocol/cli

Verify installation: mcp --version

Step 2: Configure Enterprise Authentication

Set up authentication tokens and certificates for your enterprise systems.

mcp auth configure --enterprise mcp auth add-token github $GITHUB_TOKEN mcp auth add-cert oracle $ORACLE_CERT

Step 3: Install Core MCP Servers

Install essential MCP servers for your enterprise environment.

mcp install database github sharepoint mcp install backstage internal-api filesystem

Step 4: Configure Database Connections

Set up read-only database connections with proper security configurations.

mcp config database \ --type oracle \ --host db.company.com \ --readonly \ --ssl-cert $SSL_CERT

Step 5: Enable GitHub Integration

Connect to your enterprise GitHub instance with appropriate permissions.

mcp config github \ --url github.company.com \ --token $GITHUB_TOKEN \ --readonly

Step 6: Start MCP Services

Launch all configured MCP servers and verify connectivity.

mcp start --all mcp health-check

IDE Configuration

Configure your development environment to use MCP servers

VSCode Setup

Install the MCP extension and configure GitHub Copilot integration.

# Install MCP extension code --install-extension modelcontextprotocol.mcp # Configure settings.json { "mcp.servers": { "database": "http://localhost:8001", "github": "http://localhost:8002" }, "github.copilot.advanced": { "mcp.enabled": true } }

IntelliJ IDEA Setup

Configure the MCP plugin for IntelliJ-based IDEs.

# Install MCP plugin # File > Settings > Plugins > Search "MCP" # Configure in settings: # Tools > MCP Configuration # Add server endpoints and authentication

Eclipse Setup

Set up MCP integration in Eclipse IDE.

# Install from Eclipse Marketplace # Help > Eclipse Marketplace > Search "MCP" # Configure in preferences: # Window > Preferences > MCP # Add server configurations

Verification & Testing

Ensure your MCP setup is working correctly

Test MCP Integration

Run these commands to verify your MCP servers are working properly:

# Check server status mcp status --all # Test database connectivity mcp query database "SELECT 1 FROM dual" # Test GitHub integration mcp query github "repositories owned by me" # Test Copilot integration # In your IDE, ask GitHub Copilot: # "What databases are available in our environment?"

Next Steps

Continue your MCP journey with advanced configurations

📋 Configure Additional Servers

Set up Jira, Figma, and ServiceNow MCP servers for your specific workflow needs.

View All Servers

🔒 Review Security Best Practices

Learn about enterprise security patterns, authentication, and compliance considerations.

Security Guide

🛠️ Troubleshoot Issues

Common problems and solutions for enterprise MCP deployments.

Troubleshooting