myshoes-mcp-server

by whywaita

179 downloads
Not rated
GitHub Website

About

The myshoes MCP Server is Model Context Protocol (MCP) compliant server for the whywaita/myshoes.

Details

Author
whywaita
Downloads
179
Categories
Other

- JSON-RPC based MCP server for myshoes
- Manages target data from the myshoes platform
- Runs via Docker with stdio transport
- Configured with a --host argument for the myshoes instance
- Early development stage, not production ready

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 myshoes-mcp-server
    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

Install it using Docker and configure it in your MCP client (e.g., VS Code). The server runs via stdio and requires a --host argument pointing to the myshoes instance (e.g., http://192.0.2.10:8080). An example configuration for VS Code is provided in the README.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "myshoes-mcp-server": {
            "myshoes-mcp-server": {
                "command": "docker",
                "args": [
                    "run",
                    "-i",
                    "--rm",
                    "ghcr.io/whywaita/myshoes-mcp-server:latest",
                    "/myshoes-mcp-server",
                    "stdio",
                    "--host",
                    "http://192.0.2.10:8080"
                ]
            }
        }
    }
}

McpServers

{
    "myshoes-mcp-server": {
        "command": "docker",
        "args": [
            "run",
            "-i",
            "--rm",
            "ghcr.io/whywaita/myshoes-mcp-server:latest",
            "/myshoes-mcp-server",
            "stdio",
            "--host",
            "http://192.0.2.10:8080"
        ]
    }
}

myshoes-mcp-server

The myshoes MCP Server is Model Context Protocol (MCP) compliant server for the whywaita/myshoes.
It implements a JSON-RPC server for managing target data from the myshoes.

Status

This project is in early development and not yet ready for production use.

Installation

Usage with VS Code

{
    "mcp": {
        "servers": {
            "myshoes-mcp-server": {
                "type": "stdio",
                "command": "docker",
                "args": [
                    "run",
                    "-i",
                    "--rm",
                    "ghcr.io/whywaita/myshoes-mcp-server:latest",
                    "/myshoes-mcp-server",
                    "stdio",
                    "--host",
                    "http://192.0.2.10:8080"
                ]
            }
        }
    }
}
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.