eRegulations MCP 서버

eRegulations API 데이터 액세스를 위한 모델 컨텍스트 프로토콜(MCP) 서버 구현입니다. 이 서버는 eRegulations 인스턴스에 대한 구조화되고 AI 친화적인 액세스를 제공하여 AI 모델이 행정 절차에 대한 사용자 질문에 더 쉽게 답변할 수 있도록 합니다.
특징
Related MCP server: MCP Boilerplate
용법
Docker로 실행하기(권장)
서버를 실행하는 데 권장되는 방법은 GitHub 컨테이너 레지스트리(GHCR)에서 게시된 Docker 이미지를 사용하는 것입니다. 이렇게 하면 일관되고 격리된 환경이 보장됩니다.
지엑스피1
https://your-eregulations-api.com 연결하려는 eRegulations 인스턴스의 실제 기본 URL로 바꿉니다(예: https://api-tanzania.tradeportal.org ).
서버는 표준 입력에서 MCP JSON 요청을 수신하고 표준 출력으로 응답을 보냅니다.
클라이언트 구성 예
다음은 클라이언트(예: Claude)가 Docker를 통해 이 서버를 사용하도록 구성하는 방법의 예입니다.
{
"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"
}
}
}
}
( env 섹션에서 EREGULATIONS_API_URL 값도 바꾸는 것을 잊지 마세요.)
Smithery를 통한 설치
또는 Smithery를 사용하여 서버를 설치하고 실행할 수 있습니다.
설치 명령은 https://smithery.ai/server/@unctad-ai/eregulations-mcp-server 에서 확인하세요.
npm 레지스트리를 통한 설치(더 이상 사용되지 않음)
~~ npx 사용하여 서버를 직접 실행하는 것은 환경 불일치 가능성으로 인해 더 이상 사용되지 않습니다.~~
~~```배쉬
더 이상 사용되지 않음: 환경 변수를 설정하고 npx로 실행
EREGULATIONS_API_URL= https://example.com/api && export NODE_ENV=production && 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
```