安装
- 作者仓库星标 0
- 作者仓库 skills-registry
Install aigonskills MCP Server
Register the aigonskills MCP server so skill discovery tools become available. No API key required.
Server endpoint: https://aigonskills.aigon.ai/sse (SSE transport)
Method 1: Claude Code CLI
Check if the server is already configured:
claude mcp listIf
aigonskillsalready appears, tell the user it's already installed and stop.Install the server:
claude mcp add --transport sse aigonskills https://aigonskills.aigon.ai/sseVerify with
claude mcp listor the/mcpcommand inside Claude Code.Restart Claude Code (or start a new session) for the MCP tools to become available.
To remove: claude mcp remove aigonskills
Method 2: Configuration file (manual)
Claude Code stores MCP server config in .claude/settings.local.json (project-level) or ~/.claude/settings.json (global). Add the server entry manually if preferred:
{
"mcpServers": {
"aigonskills": {
"type": "sse",
"url": "https://aigonskills.aigon.ai/sse"
}
}
}
Method 3: Claude Desktop (mcp-remote)
Claude Desktop does not support SSE transport natively. Use mcp-remote to bridge the connection.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"aigonskills": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://aigonskills.aigon.ai/sse"]
}
}
}
This spawns a local process via npx mcp-remote that proxies the remote SSE server as a local stdio MCP server that Claude Desktop can talk to. Requires Node.js/npm installed.
Method 4: Cursor
Go to Cursor settings → MCP → Add new server. Set type to sse and URL to https://aigonskills.aigon.ai/sse.
Method 5: Programmatic (Python)
from mcp import ClientSession
from mcp.client.sse import sse_client
async with sse_client("https://aigonskills.aigon.ai/sse") as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
result = await session.call_tool("call", {
"namespace": "aigonskills",
"function": "stats",
})
print(result.content[0].text)
Verify it works
After restarting Claude Code, run /mcp and confirm aigonskills shows as connected. If it does, the MCP tools are available and ready to use.
Once installed, see the asexplore skill to search and discover skills, and the use skill to read and access them.
Install the as* management skills
For optimal use of the aigonskills server, install the as* skill set as local slash commands. These are available in the aigonskills index — search for source skloesch/aigonskills:
call(namespace="aigonskills", function="list", kwargs={"query": "as", "source": "skloesch/aigonskills"})
Then install each one via asinstall (or manually download and place in ~/.claude/skills/):
/asexplore— search and discover skills/asadd— add a skill reference to CLAUDE.md/AGENT.md/asremove— remove a skill reference/asrun— run a referenced skill from remote/asinstall— install a skill locally as a slash command/asuninstall— remove a locally installed skill
These give you a complete workflow: explore → add/install → run → remove/uninstall.
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: aigonai/aigonskills — distributed by TomeVault.
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需手动接入
- 是否需要外部 API Key
- 需要 · Vendor-specific
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js · Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Check if the server is already configured: If aigonskills already appears, tell the user it's already installed and stop. Install the server:
Claude Code stores MCP server config in .claude/settings.local.json (project-level) or ~/.claude/settings.json (global). Add the server entry manually if preferred:
Claude Desktop does not support SSE transport natively. Use mcp-remote to bridge the connection. Edit ~/Library/Application Support/Claude/claudedesktopconfig.json: This spawns a local process via npx mcp-remote that proxies the remote SSE server as a local…
Go to Cursor settings → MCP → Add new server. Set type to sse and URL to https://aigonskills.aigon.ai/sse.
Method 5: Programmatic (Python)
# Install aigonskills MCP Server
Register the aigonskills MCP server so skill discovery tools become available. No API key required.
**Server endpoint:** `https://aigonskills.aigon.ai/sse` (SSE transport)
## Method 1: Claude Code CLI
1. Check if the server is already configured:
```
claude mcp list
```
If `aigonskills` already appears, tell the user it's already installed and stop.
2. Install the server:
```
claude mcp add --transport sse aigonskills https://aigonskills.aigon.ai/sse
```
3. Verify with `claude mcp list` or the `/mcp` command inside Claude Code.
4. **Restart Claude Code** (or start a new session) for the MCP tools to become available.
To remove: `claude mcp remove aigonskills`
## Method 2: Configuration file (manual)
Claude Code stores MCP server config in `.claude/settings.local.json` (project-level) or `~/.claude/settings.json` (global). Add the server entry manually if preferred:
```json
{
"mcpServers": {
"aigonskills": {
"type": "sse",
"url": "https://aigonskills.aigon.ai/sse"
}
}
}
```
## Method 3: Claude Desktop (mcp-remote)
Claude Desktop does not support SSE transport natively. Use `mcp-remote` to bridge the connection.
Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
```json
{
"mcpServers": {
"aigonskills": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://aigonskills.aigon.ai/sse"]
}
}
}
```
This spawns a local process via `npx mcp-remote` that proxies the remote SSE server as a local stdio MCP server that Claude Desktop can talk to. Requires Node.js/npm installed.
## Method 4: Cursor
Go to Cursor settings → MCP → Add new server. Set type to `sse` and URL to `https://aigonskills.aigon.ai/sse`.
## Method 5: Programmatic (Python)
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Method 1: Claude Code CLI → Method 2: Configuration file (manual) → Method 3: Claude Desktop (mcp-remote) → Method 4: Cursor → Method 5: Programmatic (Python) → Verify it works
要点 -> Server endpoint · Restart Claude Code · Register the aigonskills MCP server so skill discovery tools become available. · 1. Check if the server is already configured: claude mcp list If aigonskills already appears, tell the user it's already installed and stop. · 3. Verify with claude mcp list or the /mcp command inside Claude Code. · 4. Restart Claude Code (or start a new session) for the MCP tools to become available. · Claude Code stores MCP server config in .claude/settings.local.json (project-level) or ~/.claude/settings.json (global). · Claude Desktop does not support SSE transport natively.
文件/命令 -> https://aigonskills.aigon.ai/sse · aigonskills · claude mcp list · /mcp · claude mcp remove aigonskills · .claude/settings.local.json · ~/.claude/settings.json · mcp-remote
内容 SHA-256 -> 74a676cc18c9
方法与流程
适用与边界
原文中的明确线索
https://aigonskills.aigon.ai/sse、aigonskills、claude mcp list、/mcp、claude mcp remove aigonskills、.claude/settings.local.json、~/.claude/settings.json、mcp-remote