aps-mcp-tests

by JoaoMartins-callmeJohn

282 downloads
Not rated
GitHub

About

aps-mcp-tests is a minimal repository for testing an MCP (Model Context Protocol) server with Claude Desktop. It is intended for developers who want to run a basic MCP server locally and verify integration with Claude.

Details

Author
JoaoMartins-callmeJohn
Downloads
282
Categories
Other

- Provides a template to test an MCP server with Claude
- Requires only Python 3 and Claude Desktop
- Uses a standard Python virtual environment
- Includes a video tutorial for setup

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 aps-mcp-tests
    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

After cloning the repository, create a Python virtual environment, activate it, install the mcp package, then run python server.py. A tutorial video is linked for step‑by‑step guidance.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "aps-mcp-tests": {
            "aps-mcp-tests": {
                "command": "python",
                "args": [
                    "server.py"
                ]
            }
        }
    }
}

McpServers

{
    "aps-mcp-tests": {
        "command": "python",
        "args": [
            "server.py"
        ]
    }
}

aps-mcp-tests

Repo to test mcp server with claude

Prerequisites

Python 3 installed
Claude Desktop downloaded

You can start following the tutorial from the video: https://www.youtube.com/watch?app=desktop&v=wa_A0qY0anA

Steps

1. First open the terminal in the root folder and spin a new environment with the code below:

python -m venv .venv

2. Then you activate the environment:
On Windows
.venv/Scripts/activate

On a MAC
.venv/bin/activate

3. Install mcp

pip install mcp

4. Now you can run the server

python server.py

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.