- Home
- MCP servers
- API Request
API Request
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"nicolas-gong-api-request-mcp-server": {
"command": "node",
"args": [
"C:\\\\path\\\\to\\\\api-request-server\\\\build\\\\index.js"
],
"env": {
"NO_PROXY": "localhost,127.0.0.1,.local",
"HTTP_PROXY": "http://127.0.0.1:8080",
"HTTPS_PROXY": "http://127.0.0.1:8080"
}
}
}
}You can run an MCP server that automatically sends HTTP requests, validates JSON responses, and exposes detailed results with clear Chinese error messages. It supports proxies, multiple HTTP methods, and both HTTP and HTTPS workflows, making it easy to automate API testing and integration checks inside your MCP client setup.
How to use
You will integrate the API Request MCP Server with your MCP client to automate API calls and verify responses without manual confirmation. Use the stdio-based server configuration to run the local API request runner, and reference the server in your MCP settings to enable automatic execution of requests via the MCP protocol.
How to install
- Clone the project to your workspace
- Install dependencies with npm install
- Build the project with npm run build
- Test the server locally with npm start
git clone https://github.com/nicolas-gong/api-request-mcp-server.git
cd api-request-mcp-server
npm install
npm run build
npm start