
Centy
- 2 repo stars
- Updated July 30, 2026
- centy-io/centy-daemon
Skills for installing centy-daemon and interacting with the Centy MCP server from Claude Code
About
centy is a Claude Code skill in the AI & Agent Building category. Skills for installing centy-daemon and interacting with the Centy MCP server from Claude Code
- centy
- AI & Agent Building
- AI-coding skill
Centy by the numbers
- Data as of Jul 31, 2026 (Skillselion catalog sync)
/plugin marketplace add centy-io/centy-daemon/plugin install centy@centy-daemonAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 30, 2026 |
| Repository | centy-io/centy-daemon ↗ |
What it does
Skills for installing centy-daemon and interacting with the Centy MCP server from Claude Code
README.md
centy-daemon
A file-based database engine that stores structured data as Markdown files with YAML frontmatter, exposed via gRPC.
What is centy-daemon?
centy-daemon is the storage and query engine behind Centy. It persists all data directly to the filesystem — no external database required. Every record is a human-readable Markdown file with structured metadata in YAML frontmatter, stored inside a .centy directory that can be version-controlled with git.
The daemon runs as a local gRPC service and provides:
- File-based persistence — all data lives as
.mdfiles on disk - Structured metadata — YAML frontmatter for typed fields (status, priority, timestamps, custom fields)
- CRUD operations — create, read, update, delete for all entity types
- Query engine — advanced search with a custom query language (boolean logic, field operators, wildcards, regex)
- File integrity — SHA-256 hashing and reconciliation for managed files
- Entity linking — bidirectional relationships between records
- Multi-project support — a registry that tracks multiple databases across the filesystem
- Organization grouping — sync records across projects within an organization
This entire directory is designed to be committed to git, making the database portable, diffable, and mergeable.
Installation
git clone https://github.com/centy-io/centy-daemon.git
cd centy-daemon
cargo build --release
Usage
Start the daemon
# Default: binds to 127.0.0.1:50051
centy-daemon
# Custom address
centy-daemon --addr 127.0.0.1:50052
# Allow additional CORS origins
centy-daemon --cors-origins=http://localhost:5180
# Using environment variables
CENTY_DAEMON_ADDR=127.0.0.1:50052 centy-daemon
gRPC API
The daemon supports both native gRPC (HTTP/2) and gRPC-Web (HTTP/1.1), making it compatible with:
- Native gRPC clients (CLI tools, backend services)
- Browser-based applications (via gRPC-Web/Connect)
Core Operations
See proto/centy.proto for the full API specification (70+ RPCs).
CORS Configuration
The daemon always allows CORS requests from:
- All
*.centy.iosubdomains (e.g.,https://app.centy.io) - Localhost origins (
http://localhost,https://localhost,http://127.0.0.1,https://127.0.0.1)
To allow additional custom origins:
centy-daemon --cors-origins=http://localhost:5180,https://myapp.example.com
Testing the API
# Install grpcui for a web-based API explorer
go install github.com/fullstorydev/grpcui/cmd/grpcui@latest
grpcui -plaintext 127.0.0.1:50051
# Or use grpcurl for CLI-based interaction
grpcurl -plaintext 127.0.0.1:50051 list
grpcurl -plaintext -d '{"project_path": "/path/to/project"}' \
127.0.0.1:50051 centy.CentyDaemon/IsInitialized
E2E Tests
cd e2e
pnpm install
pnpm daemon:build
pnpm daemon:start # in another terminal
pnpm test
Contributing
See CONTRIBUTING.md for development setup, code style, and contribution guidelines.
License
MIT