mcp-server-apidebug
mcp-server-apidebug
English
MCP Server for API Debugging
API 디버깅, 로그인 인증, API 구성 관리 및 인덱스 기반 API 실행을 위한 독립형 MCP(Model Context Protocol) 서버입니다.
Features
api_config: API 디버깅 구성, Base URL, 공통 헤더 및 API 목록 관리
api_debug: API 요청 직접 실행, GET/POST/PUT/DELETE/PATCH 메서드, 쿼리 매개변수, 헤더, 본문 지원, Content-Type 자동 감지
api_execute: api_config에 저장된 인덱스로 요청 실행
api_login: 환경 변수를 기반으로 로그인 요청 실행
api_help: API 디버깅 도구 문서 및 예제 보기
Installation
전역 설치 (권장):
npm install -g @liangshanli/mcp-server-apidebug로컬 설치:
npm install @liangshanli/mcp-server-apidebugLocal Development
npm start또는 서버 직접 시작:
node src/server.jsQuick Self-Test
npm testMCP tools/list 결과를 출력합니다.
Environment Variables
변수 | 기본값 | 설명 |
|
| 프로젝트 디렉토리; 설정되지 않은 경우 현재 디렉토리 사용 |
|
| 도구 이름 접두사; 기본 도구는 |
| 비어 있음 | 선택적 구성 디렉토리 재정의; 일반적으로 필요하지 않음. 설정되지 않은 경우 |
| 비어 있음 | API 기본 URL; 구성된 경우 |
|
| 허용된 HTTP 메서드 (쉼표로 구분) |
|
| 로그인 API URL |
|
| 로그인 API 메서드 |
|
| 로그인 요청 본문, JSON 문자열 또는 일반 문자열 지원 |
| 비어 있음 | 로그인 도구 설명 |
|
| 사용자 ID용 헤더 이름 (로그인 응답에서 추출) |
MCP Configuration Example
{
"servers": {
"apidebug": {
"command": "npx",
"args": [
"@liangshanli/mcp-server-apidebug"
],
"env": {
"API_DEBUG_BASE_URL": "https://api.example.com",
"API_DEBUG_ALLOWED_METHODS": "GET,POST,PUT,DELETE,PATCH",
"API_DEBUG_LOGIN_URL": "/api/user/login",
"API_DEBUG_LOGIN_METHOD": "POST",
"API_DEBUG_LOGIN_BODY": "{\"username\":\"your_username\",\"password\":\"your_password\"}",
"API_DEBUG_LOGIN_USER_HEADER": "new-api-user",
"API_DEBUG_LOGIN_DESCRIPTION": "Execute login requests based on environment variables. Use api_config interface to handle login configuration after successful login."
}
}
}
}Configuration Storage
기본 저장 경로:
{PROJECT_PATH}/.setting/{TOOL_PREFIX}/api.jsonPROJECT_PATH가 설정되지 않은 경우 기본값은 .이며, TOOL_PREFIX가 설정되지 않은 경우 기본값은 default입니다.
Usage Examples
Base URL 설정:
{
"action": "updateBaseUrl",
"baseUrl": "https://api.example.com"
}API 디버깅:
{
"url": "/api/users",
"method": "GET",
"query": {
"page": 1,
"limit": 10
}
}API 추가 및 인덱스로 실행:
{
"action": "addApi",
"api": {
"url": "/api/login",
"method": "POST",
"body": {
"username": "admin",
"password": "123456"
}
}
}{
"index": 0
}Related MCP server: Postmancer
中文
API 调试 MCP 服务器
独立运行的 MCP (Model Context Protocol) 服务器,用于 API 调试、登录认证、API 配置管理和按索引执行 API 请求。
工具列表
api_config:管理 API 调试配置、Base URL、公共 Headers 和接口列表
api_debug:直接执行 API 请求,支持 GET/POST/PUT/DELETE/PATCH 方法、query 参数、headers、body,自动检测 Content-Type
api_execute:按
api_config中保存的接口索引执行请求api_login:根据环境变量执行登录请求
api_help:查看 API 调试工具说明和示例
安装依赖
全局安装(推荐):
npm install -g @liangshanli/mcp-server-apidebug本地安装:
npm install @liangshanli/mcp-server-apidebug本地运行
npm start或直接启动 server:
node src/server.js快速自检
npm test会输出 MCP tools/list 结果。
环境变量
变量 | 默认值 | 说明 |
|
| 项目目录;不设置时使用当前目录 |
|
| 工具名前缀;默认工具名为 |
| 空 | 可选覆盖配置目录;一般不需要设置。未设置时使用 |
| 空 | API 基础 URL;配置后无需再通过 |
|
| 允许执行的 HTTP 方法,逗号分隔 |
|
| 登录接口 URL |
|
| 登录接口方法 |
|
| 登录请求体,支持 JSON 字符串或普通字符串 |
| 空 | 登录工具说明 |
|
| 用户 ID 的 Header 名称(从登录响应中提取) |
MCP 配置示例
{
"servers": {
"apidebug": {
"command": "npx",
"args": [
"@liangshanli/mcp-server-apidebug"
],
"env": {
"API_DEBUG_BASE_URL": "https://api.example.com",
"API_DEBUG_ALLOWED_METHODS": "GET,POST,PUT,DELETE,PATCH",
"API_DEBUG_LOGIN_URL": "/api/user/login",
"API_DEBUG_LOGIN_METHOD": "POST",
"API_DEBUG_LOGIN_BODY": "{\"username\":\"your_username\",\"password\":\"your_password\"}",
"API_DEBUG_LOGIN_USER_HEADER": "new-api-user",
"API_DEBUG_LOGIN_DESCRIPTION": "根据环境变量执行登录请求。使用 api_config 接口处理登录成功后的配置。"
}
}
}
}配置保存路径
默认保存目录规则:
{PROJECT_PATH}/.setting/{TOOL_PREFIX}/api.json如果 PROJECT_PATH 不设置,则默认 .;如果 TOOL_PREFIX 不设置,则默认 default。
使用示例
设置 Base URL:
{
"action": "updateBaseUrl",
"baseUrl": "https://api.example.com"
}调试接口:
{
"url": "/api/users",
"method": "GET",
"query": {
"page": 1,
"limit": 10
}
}添加接口后按索引执行:
{
"action": "addApi",
"api": {
"url": "/api/login",
"method": "POST",
"body": {
"username": "admin",
"password": "123456"
}
}
}{
"index": 0
}Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server that provides tools for exploring and testing APIs through Swagger/OpenAPI documentation.517612MIT
- AlicenseNot gradedqualityDmaintenanceA standalone MCP server for API testing and management, allowing AI assistants to interact with RESTful APIs through natural language.1328MIT
- AlicenseAqualityAmaintenanceMCP server for searching and discovering 4,000+ public APIs3MIT
- FlicenseNot gradedqualityDmaintenanceMCP server for making API calls with authentication support. Allows configuring multiple API endpoints and performing GET, POST, PUT, DELETE requests, including form data and file uploads.
Related MCP Connectors
MCP server for AI access to Swagger by SmartBear.
A basic MCP server to operate on the Postman API.
MCP server for Vonage API documentation, code snippets, tutorials, and troubleshooting.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/liliangshan/mcp-server-apidebug'
If you have feedback or need assistance with the MCP directory API, please join our Discord server