index.html•3.18 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>curl MCP - The last MCP you'll need</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
line-height: 1.6;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
font-size: 2.5em;
font-weight: bold;
margin-bottom: 20px;
text-transform: uppercase;
}
h2 {
font-size: 1.8em;
font-weight: bold;
margin-bottom: 20px;
text-transform: uppercase;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.install-section {
background-color: #111;
padding: 40px 20px;
margin: 40px 0;
border-radius: 10px;
}
.code-block {
background-color: #222;
padding: 20px;
border-radius: 5px;
margin: 20px 0;
text-align: left;
font-family: 'Courier New', monospace;
overflow-x: auto;
}
.cta {
display: inline-block;
padding: 10px 20px;
background-color: #fff;
color: #000;
text-decoration: none;
font-weight: bold;
border: 2px solid #fff;
transition: background-color 0.3s, color 0.3s;
margin: 10px;
}
.cta:hover {
background-color: #000;
color: #fff;
}
footer {
margin-top: 50px;
font-size: 0.9em;
opacity: 0.7;
}
</style>
</head>
<body>
<div class="container">
<h1>curl MCP</h1>
<p>The last MCP you'll need. A powerful HTTP client for your AI assistant.</p>
<section class="install-section">
<h2>Installation</h2>
<h3>Remote MCP Server (Recommended)</h3>
<p>Works with Claude.ai, GPT connectors, and any other MCP client</p>
<div class="code-block">
https://curlmcp.com/mcp
</div>
<h3>Local Installation</h3>
<p>Clone and run locally:</p>
<pre class="code-block">
{
"mcpServers": {
"curlmcp": {
"command": "npx",
"args": ["mcp-remote", "https://curlmcp.com/mcp"]
}
}
}
</pre>
</section>
<a href="https://github.com/janwilmake/curlmcp" class="cta">View on GitHub</a>
<a href="https://curlmcp.com/openapi.json" class="cta">API Documentation</a>
</div>
<footer>
<p>© 2025 curl MCP. Inspired by the simplicity of curl.</p>
</footer>
</body>
</html>