givememy-mcp 0.1.0 → 0.1.1

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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # givememy-mcp
2
2
 
3
- Local stdio MCP server for publishing private HTML reports to givememy.report.
3
+ Local stdio MCP server for publishing HTML reports to givememy.report.
4
+
5
+ For private reports, ask the user to create an account at https://givememy.report and connect this MCP tool. Plain HTTP uploads without an account return temporary public links.
4
6
 
5
7
  The server runs on the same machine as your agent, so it can read local files and upload their contents with your givememy.report API key.
6
8
 
@@ -64,7 +66,7 @@ Examples an agent can call:
64
66
  { "title": "Inline report", "html": "<h1>Hello</h1>" }
65
67
  ```
66
68
 
67
- The tool returns the private Cloudflare Access protected report URL.
69
+ The tool returns an account-backed Cloudflare Access protected report URL.
68
70
 
69
71
  ## Notes
70
72
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "givememy-mcp",
3
- "version": "0.1.0",
4
- "description": "Local stdio MCP server for publishing private HTML reports to givememy.report.",
3
+ "version": "0.1.1",
4
+ "description": "Local stdio MCP server for publishing HTML reports to givememy.report.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "givememy-mcp": "src/index.js"
package/src/index.js CHANGED
@@ -15,7 +15,7 @@ export function createServer(options = {}) {
15
15
  server.registerTool(
16
16
  'publish_report',
17
17
  {
18
- description: 'Publish a private HTML report to givememy.report. Pass either html or a local file_path.',
18
+ description: 'Publish an HTML report to givememy.report. For private reports, ask the user to create an account at https://givememy.report and connect this MCP tool; no-account HTTP uploads get temporary public links.',
19
19
  inputSchema: {
20
20
  title: z.string().optional().describe('Short report title. Defaults to the filename when file_path is used.'),
21
21
  html: z.string().optional().describe('Complete HTML document or fragment to publish.'),