MCP & CLI · MCP ۋە بۇيرۇق قۇرى
Connect UyghurAI to your tools via MCP
ئۇيغۇر AI نى قوراللىرىڭىزغا MCP ئارقىلىق ئۇلاڭ
UyghurAI speaks the Model Context Protocol (MCP), an open standard for connecting AI to your tools, databases, and APIs. Connect a server so the models can read and act on your systems directly — and use the uyghurai CLI to drive everything from the terminal.
UyghurAI «Model Context Protocol» (MCP) نى قوللايدۇ — بۇ AI نى قوراللار، ساندان ۋە API لارغا ئۇلايدىغان ئوچۇق ئۆلچەم. مودېللارنى تېرمىنالدىن باشقۇرۇش ئۈچۈن uyghurai بۇيرۇق قۇرىنى ئىشلىتىڭ.
Install the CLI بۇيرۇق قۇرىنى ئورنىتىش
Install the CLI globally with npm or Homebrew, then sign in.
# npm
npm install -g uyghurai
# or Homebrew
brew install uyghurai/tap/uyghurai
# authenticate (stores a key in ~/.uyghurai/config)
uyghurai loginhttps://api.idirak.com/v1 and your existing code works unchanged.Choose a model مودېل تاللاش
List the models, set a default, or override the model for a single request.
# List available models
uyghurai models
# Set the default model
uyghurai use taklimakan
# Override the model for one request
uyghurai chat "ياخشىمۇسىز؟" --model kiroranTry the terminal تېرمىنالنى سىناش
An interactive, in-browser sandbox. Switch the active model with uyghurai use <model>, send a message, or list MCP servers. Use ↑/↓ for history.
مۇتەقابىل سىناق مەيدانى. مودېلنى ئالماشتۇرۇڭ، ئۇچۇر ئەۋەتىڭ ياكى MCP مۇلازىمېتىرلىرىنى كۆرۈڭ.
UyghurAI CLI v1.0.0 · ئۇيغۇر AI بۇيرۇق قۇرى
Type 'help' to get started, or click a command below.
Add MCP servers MCP مۇلازىمېتىرى قوشۇش
UyghurAI supports three transports. Choose the one your server uses.
# Basic syntax
uyghurai mcp add --transport http <name> <url>
# Example: connect Notion
uyghurai mcp add --transport http notion https://mcp.notion.com/mcp
# With a bearer token
uyghurai mcp add --transport http secure https://api.example.com/mcp \
--header "Authorization: Bearer ${TOKEN}"Manage servers مۇلازىمېتىرلارنى باشقۇرۇش
# List all configured servers
uyghurai mcp list
# Show details for one server
uyghurai mcp get github
# Remove a server
uyghurai mcp remove githubInstallation scopes ئورنىتىش دائىرىسى
Use --scope to control where a server is configured.
| Scope | Stored in | Available to |
|---|---|---|
local | ~/.uyghurai/config | Just you, this machine |
.project | .mcp.json (committed) | Everyone on the project |
user | ~/.uyghurai/config | You, across all projects |
# Share a server with your whole team via .mcp.json
uyghurai mcp add --scope project --transport http notion https://mcp.notion.com/mcpRun UyghurAI as an MCP server ئۇيغۇر AI نى مۇلازىمېتىر قىلىش
Expose UyghurAI to any MCP client (like Claude Code or your own agent). The server publishes tools such as chat, translate, render_script, and generate_image.
uyghurai mcp serveThen register it in any client's MCP config:
{
"mcpServers": {
"uyghurai": {
"command": "uyghurai",
"args": ["mcp", "serve"],
"env": { "UYGHURAI_API_KEY": "${UYGHURAI_API_KEY}" }
}
}
}