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.

install
# npm
npm install -g uyghurai

# or Homebrew
brew install uyghurai/tap/uyghurai

# authenticate (stores a key in ~/.uyghurai/config)
uyghurai login
Already use the OpenAI SDK? Point its base URL at https://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.

select a model
# List available models
uyghurai models

# Set the default model
uyghurai use taklimakan

# Override the model for one request
uyghurai chat "ياخشىمۇسىز؟" --model kiroran

Try 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 — zshTaklimakan 2.1
UyghurAI CLI v1.0.0  ·  ئۇيغۇر AI بۇيرۇق قۇرى
Type 'help' to get started, or click a command below.
uyghurai

Add MCP servers MCP مۇلازىمېتىرى قوشۇش

UyghurAI supports three transports. Choose the one your server uses.

http transport
# 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}"
Only add MCP servers you trust. A server can see the data you share with it, so review third-party servers before connecting.

Manage servers مۇلازىمېتىرلارنى باشقۇرۇش

manage
# List all configured servers
uyghurai mcp list

# Show details for one server
uyghurai mcp get github

# Remove a server
uyghurai mcp remove github

Installation scopes ئورنىتىش دائىرىسى

Use --scope to control where a server is configured.

ScopeStored inAvailable to
local~/.uyghurai/configJust you, this machine
.project.mcp.json (committed)Everyone on the project
user~/.uyghurai/configYou, across all projects
scope example
# Share a server with your whole team via .mcp.json
uyghurai mcp add --scope project --transport http notion https://mcp.notion.com/mcp

Run 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.

start the server
uyghurai mcp serve

Then register it in any client's MCP config:

.mcp.json
{
  "mcpServers": {
    "uyghurai": {
      "command": "uyghurai",
      "args": ["mcp", "serve"],
      "env": { "UYGHURAI_API_KEY": "${UYGHURAI_API_KEY}" }
    }
  }
}