# logr (remote · logr.it)

Query any public logr profile — timelines, events, full context — plus owner-authorized writes.

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

## Components

- remote · `logr.it`: 69/100 (this document), [markdown](https://verifymcp.io/servers/it-logr-mcp/logr.md), [page](https://verifymcp.io/servers/it-logr-mcp/logr)

## Channel facts

- Endpoint: `https://logr.it/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-17.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 6 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 73/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 598 tokens (~99/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 33/100
  - Stability observed for 10 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 88/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 56% of tool parameters carry a description.
  - Structured output schemas are declared (83% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

## Install

### Claude

```bash
claude mcp add --transport http it-logr-mcp https://logr.it/mcp
```

### Codex

```toml
[mcp_servers.it-logr-mcp]
url = "https://logr.it/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "it-logr-mcp": {
      "type": "remote",
      "url": "https://logr.it/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add it-logr-mcp --url https://logr.it/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  it-logr-mcp:
    url: "https://logr.it/mcp"
```

### Other

```json
{
  "mcpServers": {
    "it-logr-mcp": {
      "type": "http",
      "url": "https://logr.it/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-17 (score 69, +1)

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

### 2026-08-15 (score 68, +1)

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

### 2026-08-13 (score 67, +1)

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

### 2026-08-11 (score 66, 0)

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

### 2026-08-10 (score 66, +1)

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

### 2026-08-08 (score 65, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-07 (score 64)

First indexed and scored.

## MCP tools (6)

### `find_profiles` (~53 tokens)

Find profiles

Search public logr profiles by name, handle, bio, or location. Returns handles to use with the other tools.

Input parameters:

- `limit` (integer)
- `query` (string, required): Name, handle, or free-text match

Output parameters:

- `profiles` (array)

### `get_profile` (~53 tokens)

Get profile

A profile's identity card: who they are, what they're doing now, socials, and timeline stats.

Input parameters:

- `username` (string, required): The profile's @handle (its URL slug), e.g. "koshik"

Output parameters:

- `about`
- `avatarUrl`
- `bio` (string)
- `currently` (string)
- `disclosure`
- `eventCount` (number)
- `location` (string)
- `name` (string)
- `socials` (array)
- `unverified` (boolean): true when auto-generated and not claimed by its subject
- `updatedAt` (string)
- `urls` (object)
- `username` (string)
- `years`

### `get_timeline` (~120 tokens)

Get timeline

A profile's timeline events, newest first, optionally filtered by tag, year, featured, or pinned.

Input parameters:

- `featured` (boolean): Only events marked as highlights
- `limit` (integer)
- `offset` (integer)
- `pinned` (boolean): Only events the owner pinned
- `tag` (string): Event tag: work | milestone | talk | side_quest | writing
- `username` (string, required): The profile's @handle (its URL slug), e.g. "koshik"
- `year` (integer)

Output parameters:

- `events` (array)
- `total` (number): Matches before limit/offset
- `username` (string)

### `get_event` (~54 tokens)

Get event

One timeline event in full, including its media (image/video/link URLs).

Input parameters:

- `id` (string, required)
- `username` (string, required): The profile's @handle (its URL slug), e.g. "koshik"

Output parameters:

- `body` (string)
- `date` (string): ISO date (YYYY-MM-DD)
- `displayDate` (string)
- `featured` (boolean)
- `id` (string)
- `link`
- `media` (array)
- `mediaCount` (number)
- `pinned` (boolean)
- `sourceUrl`: Citation URL for seeded events
- `tags` (array)
- `title` (string)
- `year` (number)

### `search_events` (~73 tokens)

Search events

Keyword search over a profile's timeline (title, body, tags). All terms must match. Plain text matching — no semantic search.

Input parameters:

- `limit` (integer)
- `query` (string, required)
- `username` (string, required): The profile's @handle (its URL slug), e.g. "koshik"

Output parameters:

- `events` (array)
- `total` (number)
- `username` (string)

### `get_context` (~68 tokens)

Get full context

The complete Markdown context for a profile — identity, about, and full timeline with sources. Same content as the logr://profiles/{username} resource, for clients that prefer tools.

Input parameters:

- `username` (string, required): The profile's @handle (its URL slug), e.g. "koshik"

## Diagnostics

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

## Score history

- 2026-08-17: 69
- 2026-08-16: 68
- 2026-08-15: 68
- 2026-08-14: 67
- 2026-08-13: 67
- 2026-08-12: 66
- 2026-08-11: 66
- 2026-08-10: 66
- 2026-08-09: 65
- 2026-08-08: 65
- 2026-08-07: 64

## Links

- Remote endpoint: https://logr.it/mcp
- Repository: https://github.com/koshikraj/logr
- Changelog RSS feed: https://verifymcp.io/servers/it-logr-mcp/logr.xml
- Changelog JSON feed: https://verifymcp.io/servers/it-logr-mcp/logr.json
- HTML version of this page: https://verifymcp.io/servers/it-logr-mcp/logr
