mcp-rest-api
A TypeScript-based MCP server that enables testing of REST APIs through Cline. This tool allows you to test and interact with any REST API endpoints directly from your development environment.
GitHub Stars
69
User Rating
Not Rated
Favorites
0
Views
252
Forks
11
Issues
0
Node.js: 18.0.0以上npm: 8.0.0以上Installation
Installation
Prerequisites
Installation Steps
1. Install via Smithery
bash
npx -y @smithery/cli install dkmaker-mcp-rest-api --client claude
2. Manual Installation
bash
npm install -g dkmaker-mcp-rest-api
markdown
# REST API Testing Instructions
...
Configuration
Configuration
Basic Configuration
Claude Desktop Setup
Edit~/.config/claude-desktop/claude_desktop_config.json (macOS/Linux) or
%APPDATA%\Claude\claude_desktop_config.json (Windows):
json
{
"mcpServers": {
"tool-name": {
"command": "npx",
"args": ["-y", "dkmaker-mcp-rest-api"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}
Environment Variables
Set the following environment variables as needed:bash
export API_KEY="your-api-key"
export DEBUG="true"
Advanced Configuration
Security Settings
Examples
Examples
Basic Usage
Using with Claude Desktop
Available tools from this MCP server:
- tool1: Description of tool1
- tool2: Description of tool2
Programmatic Usage
javascript
// JavaScript example (Node.js)
const { MCPClient } = require('@modelcontextprotocol/client');
const client = new MCPClient();
await client.connect();
// Execute tool
const result = await client.callTool('toolName', {
parameter1: 'value1',
parameter2: 'value2'
});
console.log(result);
Use Cases
Additional Resources
CTO at Zentura A/S • Passionate AI in software dev • Fav stack: VSCode + AI tools (Cline & Aider Chat) • Building Azure-based solutions & productivity tools
10
Followers
19
Repositories
0
Gists
0
Total Contributions
The QA Sphere MCP Server is designed to integrate the QA Sphere test management system with Large Language Models (LLMs). This server allows users to discover, summarize, and chat about test cases, enhancing the development workflow within AI-powered IDEs that support the Model Context Protocol (MCP).