B

Bear

Read Bear notes.

·No reviews yet
Repo
Share:

About

Auto-generated

Bear is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Bear.

What does the Bear MCP do?
The Bear MCP allows you to interact with Bear notes programmatically. It focuses on reading notes from the Bear application, enabling integration with other tools and workflows.
How can I install the Bear MCP in Cline?
To install the Bear MCP in Cline, you typically add its repository URL (https://github.com/bart6114/my-bear-mcp) as a remote. Then, use Cline's install command for MCPs from that remote.
Does the Bear MCP require an API key or other credentials?
No, the Bear MCP uses 'none' as its authentication type. It does not require an API key, OAuth, or any other explicit credentials for basic operation.
Can I edit Bear notes using this MCP?
The primary capability described for this MCP is reading Bear notes. The listed tagline and description do not indicate support for editing or writing notes.
What is a prerequisite for using the Bear MCP?
A key prerequisite for using the Bear MCP is having the Bear note-taking application installed and configured on your system, as this MCP interacts directly with its data.

Install Bear

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "bear": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bear"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "bear": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bear"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "bear": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bear"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.