MCP Server для Prom.ua

by bigcatchkm

227 downloads
Not rated
GitHub

About

MCP Server для Prom.ua is an MCP (Model Context Protocol) server that enables Claude and other LLM models to interact with the Prom.ua API. It provides tools for managing products, orders, and categories, allowing AI assistants to retrieve and send data from the marketplace.

Details

Author
bigcatchkm
Downloads
227
Categories
Other

- Retrieve list of products
- Get detailed product information
- Create, update, and delete products
- Retrieve list of orders
- Get order details and update order status
- Fetch categories

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 MCP Server для Prom.ua
    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 globally via npm install -g mcp-server-promua or run directly with npx mcp-server-promua. Configure the API key via a .env file or environment variables (PROMUA_API_KEY, PROMUA_API_URL). Use with Claude Desktop by adding the provided JSON configuration, or install via Smithery. Docker deployment is also supported.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "mcp server \u0434\u043b\u044f prom.ua": {
            "mcp-server-promua": {
                "command": "npx",
                "args": [
                    "mcp-server-promua"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-server-promua": {
        "command": "npx",
        "args": [
            "mcp-server-promua"
        ]
    }
}

MCP Server для Prom.ua

MCP (Model Context Protocol) сервер для взаємодії з API Prom.ua. Цей сервер дозволяє Claude та іншим LLM моделям отримувати та відправляти дані через API Prom.ua.

Функціональність

Сервер надає наступні інструменти:

- Отримання списку товарів (GET)
- Отримання деталей товару (GET)
- Створення нового товару (POST)
- Оновлення існуючого товару (PUT)
- Видалення товару (DELETE)
- Отримання списку замовлень (GET)
- Отримання деталей замовлення (GET)
- Оновлення статусу замовлення (PUT)
- Отримання категорій (GET)

Встановлення

Глобальне встановлення:

npm install -g mcp-server-promua

Використання через npx:

npx mcp-server-promua

Налаштування

Перед використанням необхідно налаштувати API ключ Prom.ua. Є кілька способів:

1. Через файл .env:

PROMUA_API_KEY=your_api_key_here
PROMUA_API_URL=https://my.prom.ua

2. Через змінні середовища:

export PROMUA_API_KEY=your_api_key_here
export PROMUA_API_URL=https://my.prom.ua

Використання з Claude Desktop

1. Додайте наступну конфігурацію в налаштуваннях Claude Desktop:

{
  "mcpServers": {
    "promua": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-promua"
      ]
    }
  }
}

2. Або встановіть через Smithery:

npx -y @smithery/cli install mcp-server-promua --client claude

Використання в Docker

docker build -t mcp-server-promua .
docker run -e PROMUA_API_KEY=your_api_key_here mcp-server-promua

Розробка

```bash

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.