- Home
- MCP servers
- Requestly
Requestly
- typescript
4
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 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": {
"requestly-mcp": {
"command": "npx",
"args": [
"@requestly/mcp"
],
"env": {
"REQUESTLY_API_KEY": "<your-api-key>"
}
}
}
}This MCP server provides full CRUD access to Requestly rules and groups and can run as a stdio MCP server for seamless integration with MCP clients like VS Code. You connect, authenticate with an API key, and manage your Requestly data directly through the MCP interface.
How to use
Connect your MCP client to the Requestly MCP Server using the stdio configuration. You will authenticate with your API key and then create, read, update, or delete rules and groups, or attach rules to groups. This enables you to manage Requestly data from your MCP client with full CRUD capabilities.
How to install
Prerequisites you need before starting:
• Node.js installed on your machine
• Internet access to load the MCP server package via npm or npx
Install and run the MCP server
Install and run the Requestly MCP Server using the following commands and configuration.
# Start the MCP server locally via npx
npx @requestly/mcp
Configure your MCP client for VS Code integration
Add the MCP server configuration to your MCP client. The stdio server runs through the npm/npx command and uses an API key for authentication.
"Requestly Server": {
"type": "stdio",
"command": "npx",
"args": ["@requestly/mcp"],
"env": {
"REQUESTLY_API_KEY": "<your-api-key>"
}
}
Get Your API Key
To operate the server, obtain a Requestly API key by filling out a short form. The team will review your request and provide access shortly.
Notes on usage and security
Keep your API key secure. Do not expose it in shared configurations or logs. When you configure the MCP client, replace <your-api-key> with the key you receive.
You can manage rules and groups from your MCP client once connected. Attach rules to groups as needed to organize your Requestly configuration.
Available tools
rules_crud
Create, read, update, and delete Requestly rules from the MCP client.
groups_crud
Create, read, update, and delete Requestly groups from the MCP client.
attach_rules_to_groups
Attach or detach rules to and from groups to organize your Requestly configuration.
stdio_server
Run and manage the MCP server in stdio mode for integration with MCP clients like VS Code.