Work Journal 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., "@Work Journal MCP Servershow my EOD entries for last week"
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.
Work Journal MCP Server
A hosted MCP server that lets any member of the team read their Simplified HR Work Journal through Claude — their own entries always, and colleagues' entries where their existing Work Journal permissions already allow.
Read-only. No tool here can create, change, or delete an entry.
Connecting, from any Claude client
One flow, whichever client you use: add the server by URL, then sign in in the browser window that opens.
Claude Desktop or claude.ai — Settings → Connectors → Add custom connector →
https://wj-mcp.dev.besimplified.net/mcpClaude Code
claude mcp add work-journal --transport http https://wj-mcp.dev.besimplified.net/mcpEither way a browser window opens. Sign in with your Simplified HR email and password. On dev you also enter your workspace, for example development-hr.dev.besimplified.net.
If this is a device the accounts service has not seen before, you are sent a verification code by email or SMS. Enter it once; you will not be asked again from the same client.
Your password never reaches Claude, and this server never stores it.
Tools
work_journal_get_entries
Entries with full task detail for a date or a range of up to 31 days.
parameter | notes |
| single day, |
| inclusive range, used instead of |
| optional, see the alias table below; omit for all types |
| optional, another member's id from |
| optional, default |
Ask: "show my EOD entries for last week"
work_journal_get_day
One date in full: every task with notes and attachments, notified recipients, ETA, and submission time.
parameter | notes |
| required, |
| optional, narrows to one entry type |
| optional, another member's id |
Ask: "what did I log on 4 August?"
work_journal_get_summary
Counts by type and status over any period, with no per-day detail. Use this for anything longer than 31 days.
parameter | notes |
| inclusive range |
| whole calendar year, used when no explicit range is given |
| optional |
| optional, another member's id |
Ask: "how many EOW reports did I miss this year?"
work_journal_find_member
Finds a colleague by part of their name or email and returns their member id, for use as member on the tools above.
parameter | notes |
| part of a name or email, at least two characters |
Ask: "find Rahul's member id"
work_journal_get_team_report
One row per member with submitted, pending, and missed counts for a period.
parameter | notes |
| required, inclusive range |
| optional, defaults to EOD |
| optional team id, or the literal |
| optional: |
| optional, narrows to one member |
| optional; default 15 rows, maximum 50 |
Ask: "who missed their EOD last week?"
Type aliases
you can say | resolves to | shown as |
|
|
|
|
|
|
|
|
|
|
|
|
Matching ignores case and treats spaces, hyphens, and underscores as equivalent.
Who can see whose journal
This server enforces no permissions of its own. Every request carries your own Simplified HR session, and the Work Journal API applies exactly the permissions it applies in the web UI:
Instance permission — you can read any member of your company
Group permission — you can read members in your reporting subtree
Neither — you can read only your own journal, and any attempt at another member's is refused
Two things to know when reading a colleague's entries: the request can be refused outright, and an admin view excludes drafts, scheduled, and private entries. An absent entry therefore does not prove nothing was logged.
Limits
work_journal_get_entriesrejects ranges longer than 31 days and points you atwork_journal_get_summaryAt most 4 requests run concurrently per tool call, so a wide range stays gentle on the API
Relative dates such as "last week" are resolved by Claude before the call; the tools accept
YYYY-MM-DDonly
Running it locally
npm install
cp .env.example .env # then fill in the two secrets
WJ_ENV=dev \
WJ_PUBLIC_BASE_URL=http://localhost:8080 \
WJ_TOKEN_KEY=$(openssl rand -hex 32) \
WJ_FINGERPRINT_SECRET=$(openssl rand -hex 32) \
npm startGET /healthz should answer {"status":"ok"}. Running node src/index.js with no environment must exit immediately, listing every missing variable.
Environment
variable | required | purpose |
| yes | selects the host preset: |
| yes | externally reachable origin, published in the OAuth discovery documents |
| yes | 64 hex characters; encrypts the session envelope |
| yes | at least 32 characters; derives each member's device fingerprint |
| no | plugin API host, when it differs from the preset for |
| no | accounts service origin, when it differs from the preset |
| no, defaults to | listen port |
| no, defaults to | per-request timeout |
WJ_FINGERPRINT_SECRET must be identical across every task, and must not be rotated casually. It derives each member's stable device fingerprint; changing it re-challenges the whole team with a verification code.
Deployment notes
Cookie stickiness is required on
/authorizeonly. An OTP submission must reach the task that began the login, because the in-progress login is held in that process's memory for five minutes./mcpand/tokenare stateless and must not be sticky.Both secrets belong in SSM Parameter Store as
SecureString, referenced from the task definition'ssecretsblock — never as environment literals. Create them once per environment before the first deploy; nothing else in the platform uses the/hr/work-journal-mcp/prefix, so they will not already exist:aws ssm put-parameter --type SecureString --name /hr/work-journal-mcp/<env>/token_key --value "$(openssl rand -hex 32)" aws ssm put-parameter --type SecureString --name /hr/work-journal-mcp/<env>/fingerprint_secret --value "$(openssl rand -hex 32)"ecsTaskExecutionRoleneedsssm:GetParametersandkms:Decrypton both, or the task fails at start withResourceInitializationError, before any of this code runs.Production rejects the
workspacelogin field that dev requires, so the login page hides it outside dev.
Security
Passwords are never stored, never logged, and never returned to the browser in any form. They exist only in memory, for the seconds a login takes.
Session state travels in an AES-256-GCM encrypted envelope that only this server can open. The Simplified HR JWT never reaches Claude or the model.
Access, refresh, and authorization-code envelopes are cryptographically bound to their kind, so one cannot be spent as another.
Login attempts are rate limited per email address.
Every tool call is logged with the caller, the tool, and the member whose journal was read, so cross-member reads are auditable. Tokens and entry content are never logged.
Tests
npm testThis 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.
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/sukanya005chakraborty-tech/Work-Journal-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server