<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1 MCP Server</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>1 MCP Server</h1>
<p class="animate">Find, configure, and run MCP servers in one click.</p>
<p>ONCE AND FOR ALL. </p>
</header>
<main>
<section id="get-started">
<h2>Get Started</h2>
<h3></h3>
<div class="tabs">
<div class="tab-nav">
<button class="tab-link active" data-tab="#cursor">Cursor</button>
<button class="tab-link" data-tab="#claude">Claude</button>
<button class="tab-link" data-tab="#gemini">Gemini CLI</button>
</div>
<div id="cursor" class="tab-content active">
<h3>Cursor</h3>
<p>For Cursor: Add the following code to <code>.cursor/mcp.json</code> in your cursor project directory.</p>
<pre><code>{
"mcpServers": {
"mcp-server-discovery": {
"url": "https://mcp.1mcpserver.com/mcp/",
"headers": {
"Accept": "text/event-stream",
"Cache-Control": "no-cache"
}
}
}
}</code></pre>
</div>
<div id="claude" class="tab-content">
<h3>Claude</h3>
<p>For Claude: Open the following file based on your operating system:</p>
<ul>
<li><b>macOS:</b> <code>~/Library/Application Support/Claude/claude_desktop_config.json</code></li>
<li><b>Windows:</b> <code>%APPDATA%\\Claude\\claude_desktop_config.json</code></li>
</ul>
<p>Add the following code to the file: Note you HAVE TO CLONE REPO</p>
<pre><code>{
"mcpServers": {
"1mcpserver": {
"command": "/path/to/uv",
"args": [
"--directory",
"PATH_TO_CLONED_REPO",
"run",
"server.py",
"--local"
]
}
}
}</code></pre>
</div>
<div id="gemini" class="tab-content">
<h3>Gemini CLI</h3>
<p>For Gemini CLI: Add the following code to <code>.gemini/settings.json</code> in your project directory.</p>
<pre><code>{
"mcpServers": {
"mcp-server-discovery": {
"url": "https://mcp.1mcpserver.com/mcp/",
"headers": {
"Accept": "text/event-stream",
"Cache-Control": "no-cache"
}
}
}
}</code></pre>
</div>
</div>
</section>
<section id="demo">
<h2>Watch the Demo</h2>
<iframe src="https://www.youtube.com/embed/W4EAmaTTb2A" frameborder="0" allowfullscreen></iframe>
</section>
</main>
<script src="script.js"></script>
</body>
</html>