Skip to main content
Glama

eRegulations MCP Server

by unctad-ai

eRegulations MCP Server

Eine Model Context Protocol (MCP)-Serverimplementierung für den Zugriff auf eRegulations-API-Daten. Dieser Server bietet strukturierten, KI-freundlichen Zugriff auf eRegulations-Instanzen und erleichtert KI-Modellen die Beantwortung von Benutzerfragen zu Verwaltungsverfahren.

Merkmale

  • Zugriff auf eRegulations-Daten über ein standardisiertes Protokoll
  • Abfrageverfahren, Schritte, Voraussetzungen und Kosten
  • MCP-Eingabeaufforderungsvorlagen zur Anleitung der LLM-Tool-Nutzung
  • Optimierte Implementierung durch Standard-E/A-Verbindungen

Verwendung

Ausführen mit Docker (empfohlen)

Die empfohlene Methode zum Ausführen des Servers ist die Verwendung des veröffentlichten Docker-Images aus dem GitHub Container Registry (GHCR). Dies gewährleistet eine konsistente und isolierte Umgebung.

# Pull the latest image (optional) docker pull ghcr.io/unctad-ai/eregulations-mcp-server:latest # Run the server, providing the target eRegulations API URL export EREGULATIONS_API_URL="https://your-eregulations-api.com" docker run -i --rm -e EREGULATIONS_API_URL ghcr.io/unctad-ai/eregulations-mcp-server

Ersetzen Sie https://your-eregulations-api.com durch die tatsächliche Basis-URL der eRegulations-Instanz, mit der Sie eine Verbindung herstellen möchten (z. B. https://api-tanzania.tradeportal.org ).

Der Server wartet auf MCP-JSON-Anfragen auf der Standardeingabe und sendet Antworten an die Standardausgabe.

Beispiel einer Clientkonfiguration

Hier ist ein Beispiel, wie ein Client (wie Claude) konfiguriert werden könnte, um diesen Server über Docker zu verwenden:

{ "mcpServers": { "eregulations": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "EREGULATIONS_API_URL", "ghcr.io/unctad-ai/eregulations-mcp-server:latest" ], "env": { "EREGULATIONS_API_URL": "https://your-eregulations-api.com" } } } }

(Denken Sie daran, auch den Wert EREGULATIONS_API_URL im Abschnitt env zu ersetzen.)

Installation über Smithery

Alternativ können Sie den Server mit Smithery installieren und ausführen:

Besuchen Sie https://smithery.ai/server/@unctad-ai/eregulations-mcp-server für den Installationsbefehl.

Installation über npm Registry (veraltet)

~~Das direkte Ausführen des Servers mit npx wird aufgrund potenzieller Umgebungsinkonsistenzen nicht mehr empfohlen.~~

~~```bash

Veraltet: Umgebungsvariablen festlegen und mit npx ausführen

export EREGULATIONS_API_URL= https://example.com/api && export NODE_ENV=Produktion && npx -y @unctad-ai/eregulations-mcp-server@latest

## Configuration The server requires the URL of the target eRegulations API. ### Environment Variables - `EREGULATIONS_API_URL`: **(Required)** URL of the eRegulations API to connect to (e.g., `https://api-tanzania.tradeportal.org`). Passed to the Docker container using the `-e` flag. ## Available Tools The MCP server provides the following tools: ### `listProcedures` Lists all available procedures in the eRegulations system. ### `getProcedureDetails` Gets detailed information about a specific procedure by its ID. Parameters: - `procedureId`: ID of the procedure to retrieve ### `getProcedureStep` Gets information about a specific step within a procedure. Parameters: - `procedureId`: ID of the procedure - `stepId`: ID of the step within the procedure ### `searchProcedures` Searches for procedures by keyword or phrase. Note: This currently searches related objectives based on the underlying API and may include results beyond direct procedure names. Parameters: - `keyword`: The keyword or phrase to search for ## Prompt Templates The server provides prompt templates to guide LLMs in using the available tools correctly. These templates explain the proper format and parameters for each tool. LLM clients that support the MCP prompt templates capability will automatically receive these templates to improve their ability to work with the API. ## Development ```bash # Run in development mode npm run start # Run tests npm test # Run tests with watch mode npm run test:watch # Run test client npm run test-client ```

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Eine Serverimplementierung des Model Context Protocol, die einen strukturierten, KI-freundlichen Zugriff auf eRegulations-Daten bietet und es KI-Modellen erleichtert, Benutzerfragen zu Verwaltungsverfahren zu beantworten.

  1. Merkmale
    1. Verwendung
      1. Ausführen mit Docker (empfohlen)
      2. Beispiel einer Clientkonfiguration
      3. Installation über Smithery
      4. Installation über npm Registry (veraltet)
    2. Veraltet: Umgebungsvariablen festlegen und mit npx ausführen
      1. Run in development mode
        1. Run tests
          1. Run tests with watch mode
            1. Run test client

              Related MCP Servers

              • -
                security
                F
                license
                -
                quality
                A Model Context Protocol server that provides AI assistants with structured access to your Logseq knowledge graph, enabling retrieval, searching, analysis, and creation of content within your personal knowledge base.
                Last updated -
                19
                TypeScript
                • Apple
              • -
                security
                F
                license
                -
                quality
                A demonstration implementation of the Model Context Protocol server that facilitates communication between AI models and external tools while maintaining context awareness.
                Last updated -
                Python
                • Linux
                • Apple
              • -
                security
                F
                license
                -
                quality
                A comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.
                Last updated -
                16
                TypeScript
              • -
                security
                F
                license
                -
                quality
                A Model Context Protocol server that extends AI capabilities by providing file system access and management functionalities to Claude or other AI assistants.
                Last updated -
                3
                TypeScript
                • Apple

              View all related MCP servers

              MCP directory API

              We provide all the information about MCP servers via our MCP API.

              curl -X GET 'https://glama.ai/api/mcp/v1/servers/unctad-ai/eregulations-mcp-server'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server