# io.usefulapi/groove-hq (remote · groove-hq.usefulapi.io)

Read Groove shared-inbox conversations, contacts, agents and tags; close, assign, snooze and tag.

- Trust score: 74/100 (medium)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- remote · `groove-hq.usefulapi.io`: 74/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq.md), [page](https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq)

## Channel facts

- Endpoint: `https://groove-hq.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Endpoint Security**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1333 tokens (~83/item across 16 items; 16 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-groove-hq https://groove-hq.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-groove-hq]
url = "https://groove-hq.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-groove-hq": {
      "type": "remote",
      "url": "https://groove-hq.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-groove-hq --url https://groove-hq.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-groove-hq:
    url: "https://groove-hq.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-groove-hq": {
      "type": "http",
      "url": "https://groove-hq.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 74, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 73, +1)

No change was recorded against any check on this day. Stability & Change Management went from 13 to 17. That category is still filling its 30-day observation window: 4 days of observed history at the previous scan, 5 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 72, +2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 70, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 72, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 71, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 70, +58)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 12)

First indexed and scored.

## MCP tools (16)

### `groove_list_conversations` (~222 tokens)

List conversations

List support conversations (tickets) in the shared inbox, with rich filters. Filter by state, channel_id, folder_id, tag_name, assigned, starred, or keywords; paginate with first/after. Groove GraphQL: conversations(filter: ConversationFilter).

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `assigned` (boolean): If set, filter to assigned (true) or unassigned (false) conversations.
- `channel_id` (string): Filter to a single channel (mailbox) id.
- `first` (integer): How many records to return (Relay pagination `first`).
- `folder_id` (string): Filter to a single folder id.
- `keywords` (string): Full-text keyword search across conversations.
- `starred` (boolean): If set, filter to starred (true) or unstarred (false) conversations.
- `state` (string): Filter by conversation state.
- `tag_name` (string): Filter to conversations carrying this tag name.

### `groove_get_conversation` (~63 tokens)

Get conversation

Get a single conversation by id — subject, state, assignment, contact, channel, counts, and tags. Groove GraphQL: conversation(id: ID!).

Input parameters:

- `id` (string, required): The Groove object id (opaque GraphQL ID, passed as a string).

### `groove_list_contacts` (~98 tokens)

List contacts

List customer contacts (people who wrote in). Optional keyword search over name/email; paginate with first/after. Groove GraphQL: contacts(keywords: String).

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).
- `keywords` (string): Keyword search across contacts (name/email).

### `groove_get_contact` (~60 tokens)

Get contact

Get a single contact by id — name, email, role, type, and conversation count. Groove GraphQL: contact(contactId: ID!).

Input parameters:

- `id` (string, required): The Groove object id (opaque GraphQL ID, passed as a string).

### `groove_list_agents` (~82 tokens)

List agents

List agents (support staff / users) in the account, with role and state. Paginate with first/after. Groove GraphQL: agents.

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).

### `groove_list_channels` (~85 tokens)

List channels

List channels (mailboxes / inboxes — email, chat, etc.) configured in the account. Paginate with first/after. Groove GraphQL: channels.

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).

### `groove_list_tags` (~91 tokens)

List tags

List tags defined in the account (id, name, color) — use tag ids with the tag/untag write tools. Paginate with first/after. Groove GraphQL: tags.

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).

### `groove_list_folders` (~82 tokens)

List folders

List folders (saved views / smart folders that group conversations), with conversation counts. Paginate with first/after. Groove GraphQL: folders.

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).

### `groove_list_teams` (~79 tokens)

List teams

List teams (groups of agents that conversations can be assigned to). Paginate with first/after. Groove GraphQL: teams.

Input parameters:

- `after` (string): Relay pagination cursor — pass the previous page's `endCursor` to get the next page.
- `first` (integer): How many records to return (Relay pagination `first`).

### `groove_close_conversation` (~46 tokens)

Close conversation

CLOSES a conversation (marks it resolved) in the shared inbox. Groove GraphQL: conversationClose.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).

### `groove_open_conversation` (~48 tokens)

Open conversation

RE-OPENS a closed/snoozed conversation in the shared inbox. Groove GraphQL: conversationOpen.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).

### `groove_snooze_conversation` (~100 tokens)

Snooze conversation

SNOOZES a conversation until the given time (ISO8601) — it drops out of the inbox until then. Groove GraphQL: conversationSnooze.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).
- `until` (string, required): When to un-snooze, as an ISO8601 timestamp (e.g. 2026-08-01T09:00:00Z).

### `groove_star_conversation` (~47 tokens)

Star conversation

STARS a conversation (flags it for attention) in the shared inbox. Groove GraphQL: conversationStar.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).

### `groove_assign_conversation` (~90 tokens)

Assign conversation

ASSIGNS a conversation to an agent and/or team. Pass agent_id, team_id, or both (at least one is required). Groove GraphQL: conversationAssign.

Input parameters:

- `agent_id` (string): Agent id to assign the conversation to.
- `id` (string, required): The conversation id (opaque GraphQL ID).
- `team_id` (string): Team id to assign the conversation to.

### `groove_tag_conversation` (~68 tokens)

Tag conversation

ADDS tags (by tag id) to a conversation. Use groove_list_tags to find tag ids. Groove GraphQL: conversationTag.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).
- `tag_ids` (array, required): Tag ids to add to the conversation.

### `groove_untag_conversation` (~72 tokens)

Untag conversation

REMOVES tags (by tag id) from a conversation. Use groove_list_tags to find tag ids. Groove GraphQL: conversationUntag.

Input parameters:

- `id` (string, required): The conversation id (opaque GraphQL ID).
- `tag_ids` (array, required): Tag ids to remove from the conversation.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq#diagnostics

## Score history

- 2026-08-04: 74
- 2026-08-03: 74
- 2026-08-02: 73
- 2026-08-01: 73
- 2026-07-31: 72
- 2026-07-30: 70
- 2026-07-29: 72
- 2026-07-28: 71
- 2026-07-27: 70
- 2026-07-26: 12

## Links

- Remote endpoint: https://groove-hq.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-groove-hq/groove-hq
