aki-mcp-sv
Custom MCP [Connector] for AI chat web [Claude|ChatGPT|Grok...] use Files/Shell on your computer directly
File Explorer
- ci.yml
- release.yml
- tools.md
- aki-mcp-control-center.md
- audit-1.1.0-todo.md
- bridge-session-churn.md
- cloudflare-tunnel-ingress.md
- consolidate-mcp-tool-processes.md
- env-file-configuration.md
- improve-instructions-1.3.1.md
- improve-readme-content.md
- ingress-setup-ux.md
- init.md
- instruction-prompt-1.4.1.md
- instruction-prompt-improve.md
- instruction-prompt-minimal-override.md
- integrate-gemini-grok.md
- integrate-kiro-cli.md
- merge-pr1-windows-chatgpt.md
- panel-ux-improve.md
- remove-kiro-write.md
- shell-allowlist.md
- smart-search-strategy.md
- standalone-newbie-ux-followups.md
- standalone-packaging.md
- standalone-release-delivery.md
- try-favicon.md
- unify-mcp-tools-single-process.md
- unify-windows-linux.md
- update-check-notify.md
- 2.0.0-improve.md
- chrome-tampermonkey-autosetup.md
- interactive-and-env-tools.md
- manus-connect.md
- claude-connector.md
- harness-fact.md
- mcp-intro.md
- security-model.md
- akiflow-council-v018-ingress-standalone-env.md
- chrome-cdp-default-profile-block.md
- claude-ai-mcp-session-reinit.md
- claude-ai-oauth-connector.md
- docs-drift-audit-aug15.md
- instruction-prompt-first-principles.md
- similar-remote-mcp-projects.md
- standalone-newbie-user-flow-audit-aug16.md
- index.md
- apple-touch-icon.png
- favicon.ico
- icon-192.png
- icon-48.png
- icon-512-maskable.png
- icon-96.png
- manifest.json
- claude.png
- gemini.png
- gpt.png
- grok.png
- aki-mcp-on-free-claude-acc.png
- aki-mcp-sv-1.6.jpg
- aki-mcp-sv-instruct.png
- aki-mcp-sv-logo.png
- aki-mcp-sv-wallpaper.png
- extension-claude-usage.png
- extension-grok-usage.png
- gpt-aki-mcp-setting.png
- intro.png
- panel-client.js
- panel.css
- QR-Aki.MOMO.jpg
- QR-AkiTao-PayPal.png
- posix.js
- windows.js
- checksum.js
- launchers.js
- node-checksums.js
- package.js
- payload.js
- release-gate.js
- smoke-test.js
- targets.js
- agy-mcp.js
- allowlist.js
- config-page.js
- filesystem-mcp.js
- gatekeeper.js
- html.js
- http.js
- kiro-mcp.js
- log.js
- mcp-tool.js
- oauth.js
- open-browser.js
- panel.js
- roots.js
- search-mcp.js
- shell-mcp.js
- start.js
- streamable-bridge.js
- tailscale.js
- tools-server.js
- update-check.js
- userdata.js
- .env.example
- .gitignore
- CHANGELOG.md
- CLAUDE.md
- LICENSE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
cloudflared
View Details ▼
cloudflared
Create a persistent connection to the Cloudflare network.
cloudflared tunnel login
Authenticate and associate the connection to a domain in the Cloudflare account:
cloudflared tunnel create {{name}}
Create a tunnel with a specific name:
cloudflared tunnel list
List all tunnels in the account:
dig
View Details ▼
dig
DNS lookup utility.
See also: `resolvectl`, `nslookup`, `host`.
dig +short {{example.com}}
Lookup the IP(s) associated with a hostname (A records):
dig +noall +answer {{example.com}}
Get a detailed answer for a given domain (A records):
dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}
Query a specific DNS record type associated with a given domain name:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm start
View Details ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
tailscale funnel
View Details ▼
tailscale funnel
Share a local server on the internet using Tailscale.
tailscale funnel {{path/to/file_or_directory}}
Expose a local file or directory in the foreground:
tailscale funnel 3000
Expose an HTTP server running at 127.0.0.1:3000 in the foreground:
tailscale funnel --bg 3000
Expose an HTTP server running at 127.0.0.1:3000 in the background:
tailscale
View Details ▼
tailscale
A private WireGuard network service.
Some subcommands such as `up` have their own usage documentation.
sudo tailscale set --operator $USER
Allow the current user to operate on the Tailscale daemon:
tailscale {{up|down|status}}
Handle connection to Tailscale (connect, disconnect, check status):
tailscale set --advertise-exit-node
Offer the current machine to be an exit node for internet traffic:
xattr
View Details ▼
xattr
Utility to work with extended filesystem attributes.
xattr -l {{file}}
List key:value extended attributes for a given file:
xattr -w {{attribute_key}} {{attribute_value}} {{file}}
Write an attribute for a given file:
xattr -d {{com.apple.quarantine}} {{file}}
Delete an attribute from a given file:
query
View Details ▼
query
Display information about user sessions and process.
query session
Display all user sessions:
query session /server:{{hostname}}
Display the current user sessions on a remote computer:
query user
Display logged in users:
