Back to the catalog

DeepPane Focus Space

Create focus spaces and read user-authorized focus history summaries.

Open source Open in the app JSON README (API)

About

Create focus spaces and read user-authorized focus history summaries.

Details

Kind
MCP servers
Topic
No topic detected
Publisher
com.deeppane
Origin
official
Category
ferramentas
Transport
local
Version
0.1.3
Last push
2026-07-20T03:10:23Z
Repository state
ativo
Language
JavaScript
License
Apache-2.0
Added
2026-08-29 03:01:05
Updated
2026-08-29 03:01:05
Origin id
com.deeppane/focus-space

README

# DeepPane MCP Server

The official stdio MCP server for creating DeepPane focus spaces and reading user-authorized focus history summaries.

## Requirements

- Node.js 20 or newer
- An MCP client that supports local stdio servers

## Run

```sh
npm exec --yes --package=@deeppane/mcp-server -- deeppane-mcp
```

When `npx` is available, the shorter `npx -y @deeppane/mcp-server` command is equivalent.

Example MCP client configuration:

```json
{
  "mcpServers": {
    "deeppane": {
      "command": "npm",
      "args": ["exec", "--yes", "--package=@deeppane/mcp-server", "--", "deeppane-mcp"]
    }
  }
}
```

On Windows, prefer the npm-native form when `npx` is not installed or an MCP client cannot resolve command shims.

## Tools

- `deeppane.create_focus_space`: create a retry-safe focus space using anonymous Free behavior or a user-authorized handoff token.
- `deeppane.read_history_summary`: read a sanitized focus-history summary with a user-authorized handoff token.
- `deeppane.request_focus_space_create_token`: open the DeepPane authorization handoff for focus-space creation.
- `deeppane.request_history_summary_token`: open the separate authorization handoff for history summaries.

The server does not expose the DeepPane media catalog, raw focus events, storage keys, signed media URLs, or user credentials.

## Optional environment settings

- `DEEPPANE_MCP_TIMEOUT_MS`: request timeout from 1000 to 60000 milliseconds. Default: 15000.

Normal public use requires no API key. Authorization for account-scoped tools is completed by the user in the DeepPane Dashboard and passed as a short-lived handoff token to the relevant tool call.

## Development

```sh
npm install
npm test
npm run check:clean-install
```

Documentation: https://deeppane.com/mcp

More