MCP 服务器(模型上下文协议)
AI Host 上通用的模型上下文协议 (MCP) 服务器(Claude、OpenAI、用户开发)。
项目概述
该项目提供了一个基于Postman Collection的API测试自动化服务器,可用于各种AI主机环境。一旦用户上传 Postman Collection、Environment 和 Data json 文件,它们就可以存储在 SQLite DB 中并运行测试。
主要特点
Postman 采集、环境、数据json文件上传及管理
运行 API 测试用例并跟踪结果
管理测试集合
支持各种AI模型(Claude、OpenAI、用户开发的模型)
技术堆栈
后端:Python、FastAPI
数据库:SQLite
包管理:uv
服务器环境:本地HTTPS服务器(端口8610)
如何安装和运行
先决条件
Python 3.10 或更高版本
uv 包管理器
安装
# 저장소 클론
git clone https://github.com/foxywolf-hub/mcp-server1.git
cd mcp-server1
# 의존성 설치
uv pip install -r requirements.txt
执行
# 서버 실행
python main.py
服务器在https://localhost:8610运行。
项目结构
mcp-server1/
├── app/ # 애플리케이션 코드
│ ├── api/ # API 라우트
│ ├── core/ # 코어 설정
│ ├── db/ # 데이터베이스 관련
│ ├── models/ # 데이터 모델
│ ├── schemas/ # Pydantic 스키마
│ ├── services/ # 비즈니스 로직
│ └── utils/ # 유틸리티 함수
├── certs/ # HTTPS 인증서
├── tests/ # 테스트 코드
├── main.py # 애플리케이션 진입점
├── requirements.txt # 의존성 목록
└── README.md # 프로젝트 설명
数据库结构
主表
api_info:API基本信息api_test_case:API 测试用例api_test_data:测试数据api_test_collection:测试集合collection_test_case:将集合链接到测试用例api_test_run:测试执行记录api_test_result:测试结果user:用户信息
Related MCP Servers
- Asecurity-licenseAqualityA Model Context Protocol server that enables AI models to interact with the Monad testnet for checking token balances, sending transactions, and deploying smart contracts.Last updated -78Apache 2.0
- -security-license-qualityA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.Last updated -010MIT License
- -security-license-qualityAn Intelligent Model Context Protocol server that generates mock servers from OpenAPI specifications, featuring advanced logging, performance analytics, and server discovery for AI-assisted API development.Last updated -MIT License