fmrl-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 +1 -1
- package/dist/index.js +0 -0
- package/package.json +23 -6
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Any MCP client gets five tools:
|
|
|
44
44
|
|
|
45
45
|
## Keys and limits
|
|
46
46
|
|
|
47
|
-
The server mints a key on first use and stores it in `~/.config/fmrl/credentials.json` (`$XDG_CONFIG_HOME/fmrl/credentials.json`; `%APPDATA%\fmrl\credentials.json` on Windows), one key per API base URL, file mode 0600. `FMRL_API_KEY` overrides the file. 25 publishes a month per key, 5 keys a day per network, 2 MiB per page. Content is subject to fmrl.site's [acceptable use policy](https://fmrl.site/aup). Full API reference: [
|
|
47
|
+
The server mints a key on first use and stores it in `~/.config/fmrl/credentials.json` (`$XDG_CONFIG_HOME/fmrl/credentials.json`; `%APPDATA%\fmrl\credentials.json` on Windows), one key per API base URL, file mode 0600. `FMRL_API_KEY` overrides the file. 25 publishes a month per key, 5 keys a day per network, 2 MiB per page. Content is subject to fmrl.site's [acceptable use policy](https://fmrl.site/aup). Full API reference: [fmrl.site/api](https://fmrl.site/api).
|
|
48
48
|
|
|
49
49
|
## License
|
|
50
50
|
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,21 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fmrl-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for fmrl.site: publish a page from any agent and get a link.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"bin": {
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
"bin": {
|
|
8
|
+
"fmrl-mcp": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
10
18
|
"scripts": {
|
|
11
19
|
"build": "tsc -p tsconfig.json",
|
|
12
20
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
13
21
|
"test": "vitest run",
|
|
14
22
|
"prepublishOnly": "npm run build && npm test"
|
|
15
23
|
},
|
|
16
|
-
"repository": {
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/toogreatwtf/fmrl-plugin",
|
|
27
|
+
"directory": "packages/mcp"
|
|
28
|
+
},
|
|
17
29
|
"homepage": "https://fmrl.site/install",
|
|
18
|
-
"keywords": [
|
|
30
|
+
"keywords": [
|
|
31
|
+
"mcp",
|
|
32
|
+
"fmrl",
|
|
33
|
+
"share",
|
|
34
|
+
"publish"
|
|
35
|
+
],
|
|
19
36
|
"dependencies": {
|
|
20
37
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
21
38
|
"zod": "^3.25.0"
|