diff --git a/src/index.ts b/src/index.ts
index 53ab6af..7c0a90c 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -238,12 +238,21 @@ async function main() {
const splashPath = path.join(srcStaticDir, 'index.html');
let html = fs.readFileSync(splashPath, 'utf8');
- // Inject example server endpoints
- const exampleServersHtml = AVAILABLE_EXAMPLES.map(slug => `
-
- POST
- /${slug}/mcp - ${formatServerName(slug)} MCP App Server
-
`).join('');
+ // Inject example server endpoints with copy buttons
+ const exampleServersHtml = AVAILABLE_EXAMPLES.map(slug => {
+ const fullUrl = `${config.baseUri}/${slug}/mcp`;
+ return `
+
+
+ POST
+ /${slug}/mcp - ${formatServerName(slug)} MCP App Server
+
+
+
`;
+ }).join('');
html = html.replace('', exampleServersHtml);
res.send(html);
diff --git a/src/static/index.html b/src/static/index.html
index 0def907..cfc49df 100644
--- a/src/static/index.html
+++ b/src/static/index.html
@@ -97,9 +97,30 @@ MCP App Example Servers
+
+