Brand MCP Server

Brand MCP Server

Enables access to a PostgreSQL database for brand-related data using Python. It allows users to interact with database records through local configurations or secure remote EC2 deployments.

Category
Visit Server

README

Brand MCP Server (Python)

This provides an MCP server for accessing the brand Postgres database using Python.

Setup Instructions (Local)

  1. Create a virtual environment and install dependencies:

    python -m venv .venv
    # Windows
    .venv\Scripts\activate
    pip install -r requirements.txt
    
  2. Configure environment: Copy .env.example to .env and fill in your database credentials:

    cp .env.example .env
    
  3. Claude Desktop Configuration: On Windows, open your Claude configuration file located here: %APPDATA%\Claude\claude_desktop_config.json

    Add the following configuration to run the server locally:

    {
      "mcpServers": {
        "brand-db": {
          "command": "C:\\Users\\Mike\\Desktop\\Chumbak MCP\\brand-mcp-server\\.venv\\Scripts\\python.exe",
          "args": ["-m", "src.server"],
          "env": {
            "DB_HOST": "localhost",
            "DB_PORT": "5432",
            "DB_NAME": "brand_db",
            "DB_USER": "postgres",
            "DB_PASS": "password",
            "PYTHONPATH": "C:\\Users\\Mike\\Desktop\\Chumbak MCP\\brand-mcp-server"
          }
        }
      }
    }
    

EC2 Deployment (Ubuntu)

If you are deploying this MCP server to an Ubuntu EC2 instance (e.g. Ubuntu 22.04 or 24.04), follow these steps to securely configure the server using the FastAPI implementation (src/server2.py).

1. Update and Install Dependencies

SSH into your EC2 instance and run the following commands to install Python 3 and Git:

sudo apt update && sudo apt upgrade -y
sudo apt install git python3 python3-pip python3-venv -y

2. Clone the Repository

git clone https://github.com/MiKecantdothis/MCPforGBL.git
cd MCPforGBL

3. Setup Virtual Environment & Install Packages

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

4. Create your Environment Variables

Since your secrets are safely .gitignore'd, you must create the .env file manually on the EC2 instance:

nano .env

(Paste your database credentials inside, save with Ctrl+O, Enter, and exit with Ctrl+X.)

5. Run the Server (HTTP/SSE)

To start the FastAPI HTTP server and keep it running in the background even after you close your SSH connection, use nohup:

nohup python3 -m src.server2 > server.log 2>&1 &

Note: Your FastAPI server will now be accessible via your EC2 instance's IP on port 8000. Important: Make sure you edit your instance's Security Group in the AWS console to allow Inbound TCP traffic on Port 8000.

6. Connect Claude Desktop to EC2

If you prefer not to expose Port 8000 publicly and want Claude Desktop to communicate securely via SSH to your newly launched EC2 instance, use the standard stdio configuration.

Open %APPDATA%\Claude\claude_desktop_config.json on your Windows machine and add:

{
  "mcpServers": {
    "brand-db-remote": {
      "command": "ssh",
      "args": [
        "-i", "C:/path/to/your/ec2-key.pem",
        "ubuntu@YOUR-EC2-PUBLIC-IP",
        "cd /home/ubuntu/MCPforGBL && source .venv/bin/activate && python3 -m src.server"
      ]
    }
  }
}

(This setup seamlessly securely tunnels Claude's requests via SSH directly into your EC2's standard input/output server!)

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured