simpleinout-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTH_MODE | No | `gateway` = credentials per-request via headers; `env` = shared credentials from env vars (local dev only) | gateway |
| MCP_HTTP_PORT | No | HTTP server port | 8080 |
| MCP_TRANSPORT | No | `stdio` (Claude Desktop) or `http` (gateway) | stdio |
| SIMPLEINOUT_CLIENT_ID | Yes | Simple In/Out OAuth2 client ID | |
| SIMPLEINOUT_CLIENT_SECRET | Yes | Simple In/Out OAuth2 client secret | |
| SIMPLEINOUT_REFRESH_TOKEN | Yes | Refresh token obtained from the one-time interactive authorization |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| simpleinout_get_current_companyA | Retrieve the current company. |
| simpleinout_list_statusesA | List status-change history across the whole company within a date range. |
| simpleinout_list_my_statusesA | List the current authenticated user's status history within a date range. |
| simpleinout_list_user_statusesA | List a specific user's status history within a date range. |
| simpleinout_create_my_statusA | Create (change) the current authenticated user's status — the core check-in/check-out action. |
| simpleinout_create_user_statusA | Create (change) another user's status on their behalf. Requires the acting account to have permission to manage that user's status. |
| simpleinout_list_usersA | List all users in the company. |
| simpleinout_get_userA | Retrieve a specific user. |
| simpleinout_get_current_userA | Retrieve the current authenticated user. |
| simpleinout_list_groupsA | List all groups. |
| simpleinout_list_beaconsA | List all beacons (Bluetooth presence beacons). |
| simpleinout_list_fencesA | List all geofences. |
| simpleinout_list_networksA | List all Wi-Fi networks used for automatic presence detection. |
| simpleinout_list_announcementsA | List all announcements for the company. |
| simpleinout_list_rolesA | List all roles defined in the company (needed to create a user, which requires a role_id). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools target distinct resources (roles, users, groups, announcements, beacons, etc.), and the three status-listing tools are differentiated by scope (company, self, specific user). The only potential confusion is between list_my_statuses and list_user_statuses, but descriptions clearly indicate self vs. other.
All tools follow a consistent `simpleinout_` prefix with a clear verb_noun pattern (list_*, get_*, create_*). No mixed conventions or ambiguous verbs; the naming is uniform and predictable.
15 tools is within a reasonable range for a presence/status management server. A few list-only tools (beacons, fences, networks) feel slightly peripheral, but they align with the presence detection domain and do not make the set unwieldy.
The core workflow of checking in/out is covered via create_my_status and create_user_status, and status history is queryable. However, there are notable gaps: no create/update/delete for users, roles, groups, announcements, or configuration entities like beacons/fences/networks, limiting full lifecycle management.