Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-blinko-go": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for Blinko — the self-hosted note service.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Blinko Go and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for Blinko — the self-hosted note service.
Built with Go using mcp-go. Docker image ~24MB, runtime memory ~1.5MB. Built-in Bearer token authentication — no external proxy needed.
| Tool | Description |
|---|---|
upsert_blinko_flash_note | Create a flash note (type 0) |
upsert_blinko_note | Create a normal note (type 1) |
upsert_blinko_todo | Create a todo (type 2) |
share_blinko_note | Share a note or cancel sharing |
search_blinko_notes | Search notes with filters |
review_blinko_daily_notes | Get daily review notes |
clear_blinko_recycle_bin | Clear the recycle bin |
services:
blinko-mcp:
image: blinko-mcp-go:latest
container_name: blinko-mcp-go
restart: unless-stopped
ports:
- "8795:8080"
environment:
- BLINKO_DOMAIN=https://your-blinko.com
- BLINKO_API_KEY=your-api-key
- MCP_TRANSPORT=sse
- MCP_AUTH_TOKEN=your-secret-token
| Variable | Description | Default |
|---|---|---|
BLINKO_DOMAIN | Blinko instance URL | http://localhost:1111 |
BLINKO_API_KEY | Blinko API key | — |
MCP_TRANSPORT | Transport: stdio, sse, or http | stdio |
MCP_PORT | Port for SSE/HTTP | 8080 |
MCP_AUTH_TOKEN | Bearer token for MCP auth (optional) | — |
docker build -t blinko-mcp-go:latest .
{
"type": "streamable_http",
"url": "http://your-server:8795/sse",
"headers": {
"Authorization": "Bearer your-auth-token"
}
}
{
"mcpServers": {
"blinko": {
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "BLINKO_DOMAIN=https://your-blinko.com", "-e", "BLINKO_API_KEY=your-key", "blinko-mcp-go:latest"]
}
}
}
| Node.js (original) | Go (this) | |
|---|---|---|
| Runtime | Node.js + npx | Single binary |
| Image size | ~200MB | ~24MB |
| Memory | ~50-100MB | ~1.5MB |
| External proxy | Needs mcp-proxy + auth-proxy | Built-in SSE + auth |
| Processes | 3 | 1 |
MIT