Loading...

This MCP server allows access to Bear Notes data via SQL queries, enabling note retrieval, search, and tag listing, but requires careful configuration.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server allows access to Bear Notes data via SQL queries, enabling note retrieval, search, and tag listing, but requires careful configuration.
This MCP server is relatively safe for read-only operations if the database path is correctly configured and SQL queries are carefully managed. However, the lack of authentication and potential for SQL injection vulnerabilities make it risky if not properly secured.
Performance depends on the size of the Bear Notes database and the complexity of the SQL queries. Searching large databases may be slow.
No direct cost, but resource usage (CPU, memory) on the host machine should be considered.
npm install
npm{
"mcpServers": {
"bear": {
"command": "docker",
"args": [
"run",
"-v",
"/Users/[YOUR_USER_NAME]/Library/Group Containers/9K33E3U3T4.net.shinyfrog.bear/Application Data:/app/db",
"-i",
"akseyh/bear-mcp-server"
]
}
}
}get_notesRetrieves all notes from the Bear Notes database.
Read-only operation, no side effects.
get_tagsLists all tags from the Bear Notes database.
Read-only operation, no side effects.
get_notes_likeSearches for notes containing specific text in the Bear Notes database.
Read-only operation, but SQL injection possible if not sanitized.
None
cloud
This MCP server is relatively safe for read-only operations if the database path is correctly configured and SQL queries are carefully managed. However, the lack of authentication and potential for SQL injection vulnerabilities make it risky if not properly secured.
Autonomy should be limited due to the potential for SQL injection vulnerabilities and information disclosure. Always review the queries before execution.
Production Tip
Ensure the Bear Notes database path is correctly configured and access is restricted to authorized users only.
The Bear Notes database is located in the user's Library directory under Group Containers/9K33E3U3T4.net.shinyfrog.bear/Application Data.
The database path is configured in the Docker or NPM configuration by mounting the volume or setting the appropriate environment variable.
The server is not inherently secure and requires careful configuration to prevent unauthorized access and SQL injection vulnerabilities.
No, this server does not support authentication.
No, this server only supports read-only operations.
There is a risk of SQL injection if the queries are not properly sanitized. Ensure that user input is properly escaped before being used in SQL queries.
Optimize the SQL queries and ensure that the Bear Notes database is properly indexed.