{"id":46435385,"url":"https://github.com/linklyai/linkly-ai-cli","last_synced_at":"2026-03-09T09:02:02.358Z","repository":{"id":341766756,"uuid":"1170849633","full_name":"LinklyAI/linkly-ai-cli","owner":"LinklyAI","description":"Linkly AI CLI Tools","archived":false,"fork":false,"pushed_at":"2026-03-05T18:55:20.000Z","size":144,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-05T22:00:43.748Z","etag":null,"topics":["agent-skills","agent-tools","knowledge-base","mcp","search-engine"],"latest_commit_sha":null,"homepage":"https://linkly.ai","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LinklyAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-02T15:38:19.000Z","updated_at":"2026-03-05T18:55:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/LinklyAI/linkly-ai-cli","commit_stats":null,"previous_names":["linklyai/linkly-ai-cli"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/LinklyAI/linkly-ai-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinklyAI%2Flinkly-ai-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinklyAI%2Flinkly-ai-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinklyAI%2Flinkly-ai-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinklyAI%2Flinkly-ai-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LinklyAI","download_url":"https://codeload.github.com/LinklyAI/linkly-ai-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinklyAI%2Flinkly-ai-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30288783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skills","agent-tools","knowledge-base","mcp","search-engine"],"created_at":"2026-03-05T20:55:10.903Z","updated_at":"2026-03-09T09:02:02.351Z","avatar_url":"https://github.com/LinklyAI.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linkly AI CLI\n\nCommand-line interface for [Linkly AI](https://linkly.ai) — search your local documents from the terminal.\n\nThe CLI connects to the Linkly AI desktop app's MCP server, giving you fast access to your indexed documents without leaving the terminal.\n\n## Prerequisites\n\nThe **Linkly AI desktop app** must be running with MCP server enabled. The CLI automatically discovers the app via `~/.linkly/port`.\n\n## Installation\n\n### macOS / Linux\n\n```bash\ncurl -sSL https://updater.linkly.ai/cli/install.sh | sh\n```\n\n### Windows (PowerShell)\n\n```powershell\nirm https://updater.linkly.ai/cli/install.ps1 | iex\n```\n\n### Homebrew (macOS / Linux)\n\n```bash\nbrew tap LinklyAI/tap\nbrew install linkly\n```\n\n### Cargo\n\n```bash\ncargo install linkly-ai-cli\n```\n\n### GitHub Releases\n\nPre-built binaries for all platforms are available on the [Releases](https://github.com/LinklyAI/linkly-ai-cli/releases) page.\n\n| Platform              | File                                      |\n| --------------------- | ----------------------------------------- |\n| macOS (Apple Silicon) | `linkly-aarch64-apple-darwin.tar.gz`      |\n| macOS (Intel)         | `linkly-x86_64-apple-darwin.tar.gz`       |\n| Linux (x86_64)        | `linkly-x86_64-unknown-linux-gnu.tar.gz`  |\n| Linux (ARM64)         | `linkly-aarch64-unknown-linux-gnu.tar.gz` |\n| Windows (x64)         | `linkly-x86_64-pc-windows-msvc.zip`       |\n\n### From Source\n\n```bash\ncargo install --path .\n```\n\n## Usage\n\n### Search Documents\n\n```bash\nlinkly search \"machine learning\"\nlinkly search \"API design\" --limit 5\nlinkly search \"notes\" --type pdf,md,docx\n```\n\n| Option           | Description                                                             |\n| ---------------- | ----------------------------------------------------------------------- |\n| `--limit \u003cN\u003e`    | Maximum results (default: 20, max: 50)                                  |\n| `--type \u003ctypes\u003e` | Filter by document types, comma-separated (e.g. `pdf,md,docx,txt,html`) |\n\n### View Document Outline\n\nGet structural outlines for one or more documents (IDs come from search results):\n\n```bash\nlinkly outline \u003cdoc-id\u003e\nlinkly outline \u003cid1\u003e \u003cid2\u003e \u003cid3\u003e\n```\n\n### Read Document Content\n\n```bash\nlinkly read \u003cdoc-id\u003e\nlinkly read \u003cdoc-id\u003e --offset 50 --limit 100\n```\n\n| Option         | Description                        |\n| -------------- | ---------------------------------- |\n| `--offset \u003cN\u003e` | Starting line number (1-based)     |\n| `--limit \u003cN\u003e`  | Number of lines to read (max: 500) |\n\n### Check Status\n\n```bash\nlinkly status\n```\n\n### MCP Bridge Mode\n\nRun as a stdio MCP server for Claude Desktop, Cursor, or other MCP clients:\n\n```bash\nlinkly mcp\n```\n\nClaude Desktop configuration (`claude_desktop_config.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"linkly-ai\": {\n      \"command\": \"linkly\",\n      \"args\": [\"mcp\"]\n    }\n  }\n}\n```\n\n### Self-Update\n\n```bash\nlinkly self-update\n```\n\n## Global Options\n\n| Flag               | Description                                                                |\n| ------------------ | -------------------------------------------------------------------------- |\n| `--endpoint \u003curl\u003e` | Connect to a specific MCP endpoint (e.g. `http://192.168.1.100:60606/mcp`) |\n| `--json`           | Output in JSON format (useful for scripting)                               |\n| `-V, --version`    | Print version                                                              |\n| `-h, --help`       | Print help                                                                 |\n\n## Examples\n\n```bash\n# Search across LAN\nlinkly search \"budget report\" --endpoint http://192.168.1.100:60606/mcp\n\n# JSON output for scripting\nlinkly search \"TODO\" --json | jq '.content'\n\n# Pipe document content\nlinkly read abc123 --limit 50 | head -20\n```\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinklyai%2Flinkly-ai-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinklyai%2Flinkly-ai-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinklyai%2Flinkly-ai-cli/lists"}