🌐 Claude MCP Server Quickstart

by gabrieldsguilherme

278 downloads
Not rated
GitHub

Description

# 🌐 Claude MCP Server Quickstart A ready-to-use implementation of the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that integrates with Claude AI models. ## πŸ” Overview This project provides a fully functional MCP server implementation that allows you…

About

# 🌐 Claude MCP Server Quickstart A ready-to-use implementation of the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that integrates with Claude AI models. ## πŸ” Overview This project provides a fully functional MCP server implementation that allows you to: - Connect Claude AI models through a…

Details

Author
gabrieldsguilherme
Downloads
278
Categories
AI

- Complete MCP protocol implementation
- Claude AI model integration
- Context-aware request processing
- Streaming response support
- Easy configuration and setup
- Well-documented codebase

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name 🌐 Claude MCP Server Quickstart
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, create and activate a virtual environment with uv venv, install dependencies (uv add "mcp[cli]" httpx), then update your Claude Desktop configuration file (claude_desktop_config.json) with the MCP server definition. Restart Claude for Desktop and directly ask Claude questions such as weather queries.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "\ud83c\udf10 claude mcp server quickstart": {
            "mcp-server-gabrieldsguilherme": {
                "command": "uv",
                "args": [
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-server-gabrieldsguilherme": {
        "command": "uv",
        "args": [
            "venv"
        ]
    }
}
# 🌐 Claude MCP Server Quickstart A ready-to-use implementation of the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that integrates with Claude AI models. ## πŸ” Overview This project provides a fully functional MCP server implementation that allows you to: - Connect Claude AI models through a standardized protocol - Process context-aware requests - Handle model responses efficiently - Streamline AI integrations in your applications Built following the official [MCP Server Quickstart guide](https://modelcontextprotocol.io/quickstart/server). ## ✨ Features - βœ… Complete MCP protocol implementation - βœ… Claude AI model integration - βœ… Context-aware request processing - βœ… Streaming response support - βœ… Easy configuration and setup - βœ… Well-documented codebase ## πŸ“‹ Prerequisites - Python 3.8+ - Access to Claude AI API credentials - Basic understanding of REST APIs ## πŸš€ Installation ```bash # Clone the repository git clone https://github.com/gabrieldsguilherme/mcp-server.git cd mcp-server # Create and activate virtual environment uv venv source .venv/bin/activate # Install dependencies uv add "mcp[cli]" httpx ``` ## βš™οΈ Configuration ### 1. Open your Claude Desktop configuration file Open your Claude for Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor. Make sure to create the file if it doesn’t exist. ### 2. Update your Claude Desktop configuration file ```json { "mcpServers": { "weather": { "command": "/ABSOLUTE/PATH/TO/PARENT/FOLDER/uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather", "run", "weather.py" ] } } } ``` This tells Claude for Desktop: a. There’s an MCP server named β€œweather” b. To launch it by running uv --directory /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather run weather.py ### 3. Save the file and restart Claude for Desktop ## πŸ“– Usage ### 1. Ask Claude "What’s the weather in Sacramento?" ### 2. Ask Claude "What are the active weather alerts in Texas?"
No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.