npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@j0zack/curl-mcp-server

v1.0.1

Published

MCP server for executing curl commands and HTTP requests with full response data

Readme

@j0zack/curl-mcp-server

Execute curl commands and HTTP requests from Claude Desktop, n8n, or any MCP-compatible client.


⚡ Quick Start

Add this to your n8n or Claude Desktop config:

{
  "mcpServers": {
    "curl-mcp": {
      "command": "npx",
      "args": ["@j0zack/curl-mcp-server@latest"]
    }
  }
}

That's it! Restart your app and the tools appear automatically.


🎯 What It Does

  • Execute curl commands - Paste any curl command and run it
  • Make HTTP requests - Structured API calls with full control
  • Get full responses - Status, headers, body, size, duration
  • Authentication - Basic Auth and Bearer tokens
  • Custom headers - Any header you need

🔧 Available Tools

Tool 1: execute_curl

Run any curl command string.

Example prompt: "Execute curl -X POST https://httpbin.org/post -d '{"test":"data"}'"

Tool 2: http_request

Structured HTTP requests with parameters.

Example prompt: "Make a POST request to https://api.example.com/data with body {"name":"test"}"


📖 Usage Examples

In Claude Desktop

Fetch https://api.github.com/users/github and show me the response.
Execute curl -H "Authorization: Bearer token123" https://api.example.com/profile
Make a GET request to https://httpbin.org/get with custom header X-My-Header: value

In n8n

Just add an MCP node and select curl-mcp - you'll see both tools ready to use.


📦 Installation Options

Option 1: npx (Recommended)

{"command": "npx", "args": ["@j0zack/curl-mcp-server@latest"]}

Option 2: Global install

npm install -g @j0zack/curl-mcp-server

Then use: {"command": "curl-mcp-server"}

Option 3: Pin version

{"command": "npx", "args": ["@j0zack/[email protected]"]}

📝 Response Format

Both tools return:

{
  "success": true,
  "status": 200,
  "statusText": "OK",
  "headers": {...},
  "body": "...",
  "bodySize": 1234,
  "duration": 123
}

🐛 Troubleshooting

Tools not appearing?

  • Restart Claude Desktop/n8n completely
  • Check the config has correct syntax
  • Try: npx @j0zack/curl-mcp-server@latest in terminal

"command not found"?

  • Make sure Node.js 20+ is installed
  • Use npx syntax (it auto-downloads)

📄 License

MIT © j0zack


🔗 Links

  • npm: https://www.npmjs.com/package/@j0zack/curl-mcp-server
  • GitHub: https://github.com/j0zack/curl-mcp-server