Fellow Aiden brew.link MCP server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Fellow Aiden brew.link MCP serverCreate a brew.link for a 16:1 ratio, 30s bloom, 3 pulses profile."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fellow Aiden brew.link MCP server
A remote MCP server on Cloudflare Workers that turns a Fellow Aiden brew profile into a shareable brew.link URL. It exposes one tool that validates a profile, creates it through Fellow's private API, generates a share link, and returns the URL — designed to be added to Claude.ai (and Claude Code) as a custom remote connector.
Built with Cloudflare's agents SDK (McpAgent, a Durable Object per session) over the Streamable HTTP transport at /mcp, plus @modelcontextprotocol/sdk and zod.
Tools
Tool | What it does |
| Validates the profile, then |
| Dry run — validates the profile against every Aiden constraint without calling Fellow's API. Returns |
Profile input schema
All fields are required (except profileType, which defaults to 0). Validated before any API call:
Field | Type | Constraint |
| integer | use |
| string | 1–50 chars, charset |
| number | one of |
| boolean | |
| number | one of |
| integer |
|
| number | one of |
| boolean | |
| integer |
|
| integer |
|
| number[] | each one of |
| boolean | |
| integer |
|
| integer |
|
| number[] | each one of |
Project layout
src/
index.ts MCP server (McpAgent), the two tools, CORS + auth gate + routing
fellow.ts Fellow API client: login → devices → create profile → share (401 re-login retry)
profile.ts zod schema + cross-field length validation
env.d.ts secret typings merged into the generated Env
wrangler.jsonc Worker config (Durable Object binding MCP_OBJECT + migration)
test-tool.ps1 end-to-end handshake test (calls a tool and prints the result)1. Install
npm install2. Set the three secrets
The Worker reads three secrets from env — never hardcode them. Set each in your deployed Worker:
npx wrangler secret put FELLOW_EMAIL
npx wrangler secret put FELLOW_PASSWORD
npx wrangler secret put MCP_AUTH_TOKENFELLOW_EMAIL/FELLOW_PASSWORD— your Fellow account login (the same one the Fellow app uses).MCP_AUTH_TOKEN— a long random string you choose. It gates the/mcpendpoint so only your connector can call it. Generate one with:[Convert]::ToBase64String((1..32 | ForEach-Object { Get-Random -Max 256 }))
Windows / PowerShell gotcha: do not pipe a value into
wrangler secret put(e.g.echo $x | wrangler secret put …) — PowerShell prepends a UTF‑8 BOM and the stored secret gets a hidden leading character, so logins/auth then fail mysteriously. Instead run the command with no pipe and paste the value at the interactive prompt, or pipe throughcmd:cmd /c "type secret.txt" | npx wrangler secret put FELLOW_PASSWORD.
Local development
For npm run dev, put the same three values in a .dev.vars file (gitignored) — copy .dev.vars.example:
FELLOW_EMAIL=you@example.com
FELLOW_PASSWORD=your_fellow_password
MCP_AUTH_TOKEN=some-local-tokennpm run dev # http://127.0.0.1:8787 (MCP at /mcp, health at /health)3. Deploy
npm run deployWrangler prints the public URL. Your MCP endpoint is that URL + /mcp:
https://fellow-aiden-mcp.<your-workers-subdomain>.workers.dev/mcp(If this is your first Worker, Cloudflare will prompt you to register a free *.workers.dev subdomain.)
4. Authentication model
The /mcp endpoint requires the MCP_AUTH_TOKEN shared secret, accepted two ways so every client works:
Authorization: Bearer <MCP_AUTH_TOKEN>header — used by curl, Claude Code, and the Claude API MCP connector.?token=<MCP_AUTH_TOKEN>query param on the URL — used by Claude.ai web, whose "Add custom connector" UI currently has no field for a bearer token or custom header (only OAuth client ID/secret). Putting the secret in the URL is the practical way to authenticate the web connector.
/health is open (no auth) for liveness checks. Requests with a missing/wrong token get HTTP 401.
5. Test end-to-end with curl (before wiring to Claude)
A full tool call is a 3‑message Streamable‑HTTP handshake (initialize → notifications/initialized → tools/call) that shares an Mcp-Session-Id. The included test-tool.ps1 does this for you:
# Dry-run validation only (no Fellow API call, no profile created):
./test-tool.ps1 -Url "https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp" -Token "<MCP_AUTH_TOKEN>" -ValidateOnly
# Full end-to-end — creates a real profile and returns a real brew.link:
./test-tool.ps1 -Url "https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp" -Token "<MCP_AUTH_TOKEN>"A green https://brew.link/... line means success.
Raw curl
Health (no auth):
curl https://fellow-aiden-mcp.<subdomain>.workers.dev/healthWrong/no token is rejected:
curl -i -X POST "https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
--data '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'
# -> HTTP/1.1 401 Unauthorizedinitialize (note the Mcp-Session-Id in the response headers — reuse it on follow-up calls):
curl -i -X POST "https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp?token=<MCP_AUTH_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
--data '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"curl","version":"0"}}}'Then call the tool, reusing the session id (token shown here as a header instead of ?token= — either works):
SID="<value of Mcp-Session-Id from above>"
curl -X POST "https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp" \
-H "Authorization: Bearer <MCP_AUTH_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Mcp-Session-Id: $SID" \
--data '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"create_aiden_brew_link","arguments":{"profileType":0,"title":"My Brew","ratio":16,"bloomEnabled":true,"bloomRatio":2,"bloomDuration":30,"bloomTemperature":96,"ssPulsesEnabled":true,"ssPulsesNumber":3,"ssPulsesInterval":20,"ssPulseTemperatures":[96,95,94],"batchPulsesEnabled":true,"batchPulsesNumber":2,"batchPulsesInterval":30,"batchPulseTemperatures":[96,95]}}}'Windows curl tip: add
--ssl-no-revokeif SChannel revocation checks fail (a local trust-store quirk, not a server issue).
6. Add it to Claude.ai (web) as a custom connector
Go to Settings → Connectors → Add custom connector.
Remote MCP server URL: paste your endpoint with the token in the URL:
https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp?token=<MCP_AUTH_TOKEN>Leave Advanced settings (OAuth Client ID/Secret) blank — this server uses the URL token, not OAuth.
Save. Claude will connect and discover
create_aiden_brew_linkandvalidate_aiden_profile. In a chat, enable the connector and ask Claude to create a brew profile; it returns abrew.link.
Why the token is in the URL: Claude.ai's web connector UI has no bearer-token/header field (only OAuth). The query-param token is the supported way to authenticate. Treat the full URL (with token) as a secret. If you'd rather not put a secret in a URL, the alternative is to implement OAuth via Cloudflare's
workers-oauth-provider— a larger change.
Claude Code / API connector
Use the header form instead — e.g. in Claude Code:
claude mcp add --transport http fellow-aiden \
"https://fellow-aiden-mcp.<subdomain>.workers.dev/mcp" \
--header "Authorization: Bearer <MCP_AUTH_TOKEN>"Scripts
npm run dev wrangler dev (local, reads .dev.vars)
npm run deploy wrangler deploy
npm run type-check tsc --noEmit
npm run cf-typegen regenerate worker-configuration.d.ts after wrangler.jsonc changesNotes & limitations
Single brewer assumed. The brewer id is read from
GET /devices?dataType=realelement[0]. Multi-brewer accounts would need a selector.401 handling. Any Fellow call returning
401triggers one re-login + retry, per Fellow's API behavior.No persistence. The server is stateless per call (the Durable Object only backs MCP session transport); nothing about your brews is stored.
Unofficial API. Endpoints/headers are reverse-engineered from the open-source
9b/fellow-aidenpackage and may change without notice.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ga815647/fellow-aiden-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server