Skip to content

Commit d29915e

Browse files
ChrisLAScursoragent
andcommitted
Remove personal identifiers from public docs
Replace username/URL references in AGENTS.md with generic placeholders so the public repo doesn't expose instance details. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 7e9d275 commit d29915e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

AGENTS.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ freshrss-mcp/
5050
uv sync && uv run pytest -v
5151

5252
# Start server (needs env vars)
53-
export FRESHRSS_URL="https://freshrss.trailertrash.io"
54-
export FRESHRSS_USERNAME="chrisf"
53+
export FRESHRSS_URL="https://freshrss.example.com"
54+
export FRESHRSS_USERNAME="youruser"
5555
export FRESHRSS_PASSWORD="..."
5656
export MCP_SERVER_PORT=8765
5757
uv run freshrss-mcp
@@ -61,22 +61,22 @@ uv run freshrss-mcp
6161

6262
## NixOS Integration
6363

64-
The flake exports `nixosModules.default`. Host config (rvbee) at `/home/chrisf/build/config`:
64+
The flake exports `nixosModules.default`. Example host config:
6565

6666
```nix
6767
# In flake.nix inputs:
6868
freshrss-mcp.url = "github:ChrisLAS/freshrss-mcp";
6969
freshrss-mcp.inputs.nixpkgs.follows = "nixpkgs";
7070
71-
# In rvbee modules:
71+
# In host modules:
7272
freshrss-mcp.nixosModules.default
7373
7474
# In services config:
7575
services.freshrss-mcp-server = {
7676
enable = true;
77-
freshRssUrl = "https://freshrss.trailertrash.io";
78-
username = "chrisf";
79-
passwordFile = "/home/chrisf/.config/secrets/freshrss-mcp";
77+
freshRssUrl = "https://freshrss.example.com";
78+
username = "youruser";
79+
passwordFile = "/path/to/secrets/freshrss-mcp";
8080
port = 3005;
8181
host = "0.0.0.0";
8282
};

0 commit comments

Comments
 (0)