lazymac-mcp-embedding-search 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/index.js +7 -0
- package/package.json +16 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Bootstrap MCP client → https://api.lazy-mac.com/embedding-search/mcp
|
|
3
|
+
const { spawn } = require('child_process');
|
|
4
|
+
const url = "https://api.lazy-mac.com/embedding-search/mcp";
|
|
5
|
+
console.error(`[${process.argv[0]}] Bootstrap MCP client to ${url}`);
|
|
6
|
+
console.error('Use mcp-remote: npx mcp-remote ' + url);
|
|
7
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lazymac-mcp-embedding-search",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Cloudflare Workers MCP server wrapper: embedding-search",
|
|
5
|
+
"mcpName": "io.github.lazymac2x/embedding-search",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"bin": { "embedding-search-mcp": "index.js" },
|
|
8
|
+
"keywords": ["mcp", "model-context-protocol", "cloudflare-workers"],
|
|
9
|
+
"author": "lazymac2x",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"homepage": "https://api.lazy-mac.com/embedding-search/mcp",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/lazymac2x/embedding-search-api"
|
|
15
|
+
}
|
|
16
|
+
}
|