With HTTPS And GitHub OAuth
БесплатноНе проверенThis project is a secure MCP server built with Node.js and Express. It features HTTPS encryption using self-signed certificates, GitHub OAuth authentication, an
Описание
This project is a secure MCP server built with Node.js and Express. It features HTTPS encryption using self-signed certificates, GitHub OAuth authentication, and additional security measures like rate limiting and HTTP header protection.
README
This project is a secure local MCP server built with Node.js and Express. It features HTTPS encryption using self-signed certificates, GitHub OAuth authentication, and additional security measures like rate limiting and HTTP header protection.
Features
- HTTPS Encryption: Ensures secure communication between clients and the server.
- GitHub OAuth Authentication: Allows users to log in using their GitHub accounts.
- Rate Limiting: Protects against abuse and denial-of-service (DoS) attacks.
- Secure Session Management: Uses
express-sessionwith secure cookies. - HTTP Header Security: Implements
helmetto protect against common vulnerabilities.
Prerequisites
Before you begin, ensure you have the following installed on your system:
Setup Instructions
Step 1: Clone the Repository
Clone this repository to your local machine:
git clone https://github.com/omar-steam/MCP-Server-with-HTTPS-and-GitHub-OAuth.git cd mcp-server
Step 2: Install Dependencies
Install the required npm packages:
npm install
Step 3: Generate SSL Certificates
Generate self-signed SSL certificates using OpenSSL:
openssl genrsa -out key.pem 2048 openssl req -new -key key.pem -out csr.pem openssl x509 -req -days 365 -in csr.pem -signkey key.pem -out cert.pem
This will create the following files in your project directory:
key.pem: Private keycert.pem: Self-signed certificate
Step 4: Configure Environment Variables
Create a .env file in the root of your project and add the following variables:
CLIENT_ID=your-github-client-id CLIENT_SECRET=your-github-client-secret REDIRECT_URI=https://localhost:3000/auth/callback SESSION_SECRET=your-session-secret
Replace your-github-client-id and your-github-client-secret with the credentials from your GitHub OAuth App.
Step 5: Start the Server
Run the server:
node server.js
You should see:
Secure server running on https://localhost:3000
Usage
Accessing the Server
Open your browser and navigate to:
https://localhost:3000
Authentication via GitHub
- Visit
/authto start the GitHub authentication process:
https://localhost:3000/auth
- After successful login, you’ll be redirected to
/success. - If authentication fails, you’ll be redirected to
/failure.
Protected Routes
Access /secure-data to test a route that requires authentication:
https://localhost:3000/secure-data
If you’re not authenticated, you’ll see a 401 Unauthorized error.
Project Structure
mcp-server/ ├── key.pem # Private key for HTTPS ├── cert.pem # Self-signed certificate for HTTPS ├── server.js # Main server file ├── package.json # Project metadata and dependencies ├── .env # Environment variables (not included in version control) └── README.md # Project documentation (this file)
Troubleshooting
Port Already in Use (EADDRINUSE)
If port 3000 is already in use, stop any processes using it or change the port in server.js.
To find and kill processes using port 3000:
netstat -ano | findstr :3000 taskkill /PID <PID> /F
Certificate Warnings in Browser
Self-signed certificates are not trusted by browsers. For production, use a trusted Certificate Authority like Let’s Encrypt.
Contributing
Feel free to fork this repository, make improvements, and submit pull requests! Contributions are welcome.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Acknowledgments
Special thanks to:
Enjoy building your secure MCP server guys! 🔥🔥🔥
Notes for Customization:
- Replace placeholders like
your-github-client-idwith your actual credentials. - Update the repository URL (
git clone) with your GitHub repository link if you’re hosting this code.
from github.com/omar-steam/MCP-Server-with-HTTPS-and-GitHub-OAuth
Установка With HTTPS And GitHub OAuth
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/omar-steam/MCP-Server-with-HTTPS-and-GitHub-OAuthFAQ
With HTTPS And GitHub OAuth MCP бесплатный?
Да, With HTTPS And GitHub OAuth MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для With HTTPS And GitHub OAuth?
Нет, With HTTPS And GitHub OAuth работает без API-ключей и переменных окружения.
With HTTPS And GitHub OAuth — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить With HTTPS And GitHub OAuth в Claude Desktop, Claude Code или Cursor?
Открой With HTTPS And GitHub OAuth на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare With HTTPS And GitHub OAuth with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
