lazymac-mcp-blog 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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +7 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @lazymac-mcp/blog
2
+
3
+ MCP server wrapper. Hosted at https://api.lazy-mac.com/blog/mcp.
4
+
5
+ ```
6
+ npx mcp-remote https://api.lazy-mac.com/blog/mcp
7
+ ```
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ // Bootstrap MCP client → https://api.lazy-mac.com/blog/mcp
3
+ const { spawn } = require('child_process');
4
+ const url = "https://api.lazy-mac.com/blog/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-blog",
3
+ "version": "1.0.0",
4
+ "description": "Cloudflare Workers MCP server wrapper: blog",
5
+ "mcpName": "io.github.lazymac2x/blog",
6
+ "main": "index.js",
7
+ "bin": { "blog-mcp": "index.js" },
8
+ "keywords": ["mcp", "model-context-protocol", "cloudflare-workers"],
9
+ "author": "lazymac2x",
10
+ "license": "MIT",
11
+ "homepage": "https://api.lazy-mac.com/blog/mcp",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/lazymac2x/blog-api"
15
+ }
16
+ }