A Model Context Protocol (MCP) server for interacting with Blinko note service.
- Upsert flash notes (type 0) to Blinko
- Upsert normal notes (type 1) to Blinko
- Search notes with various filters
- Get daily review notes
- Clear recycle bin
{
"mcpServers": {
"mcp-server-blinko": {
"command": "npx",
"args": ["-y", "mcp-server-blinko@0.0.6"],
"env": {
"BLINKO_DOMAIN": "sample.blinko.com",
"BLINKO_API_KEY": "eyj..."
}
}
}
}
Set the following environment variables:
BLINKO_DOMAIN
: Your Blinko service domainBLINKO_API_KEY
: Your Blinko API key
The server provides 6 MCP tools:
- Description: Write flash note (type 0) to Blinko
- Parameters:
content
(string, required): Text content of the note
- Returns: Success message with the created note ID
- Description: Write note (type 1) to Blinko
- Parameters:
content
(string, required): Text content of the note
- Returns: Success message with the created note ID
- Description: Share a note or cancel sharing
- Parameters:
noteId
(number, required): ID of the note to sharepassword
(string, optional): Six-digit password for sharingisCancel
(boolean, optional): Whether to cancel sharing (default: false)
- Returns: Share status, password (if set), and share link (if successful)
- Description: Search notes in Blinko with various filters
- Parameters:
searchText
(string, required): Search keywordsize
(number, optional): Number of results to return (default: 5)type
(number, optional): Note type: -1 for all, 0 for flash notes, 1 for normal notesisArchived
(boolean, optional): Search in archived notesisRecycle
(boolean, optional): Search in recycled notesisUseAiQuery
(boolean, optional): Use AI-powered search (default: true)startDate
(string, optional): Start date in ISO formatendDate
(string, optional): End date in ISO formathasTodo
(boolean, optional): Search only in notes with todos
- Returns: List of matching notes with their IDs and content
- Description: Get today's notes for review
- Parameters: None
- Returns: List of today's review notes with their IDs and content
- Description: Clear the recycle bin in Blinko
- Parameters: None
Developed based on mcp-server-flomo project.