install
- Repo stars 0
- Author repo 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.
- Fluxly category
- AI
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @tomevault-io · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Manual integration
- External API key
- Required · Vendor-specific
- Detected OS requirements
- macOS · Linux · Windows
- Runtime requirements
- Node.js · Python
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. 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)
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> 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
terms -> 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.
files/cmd -> https://aigonskills.aigon.ai/sse · aigonskills · claude mcp list · /mcp · claude mcp remove aigonskills · .claude/settings.local.json · ~/.claude/settings.json · mcp-remote
body sha256 -> 74a676cc18c9
Decide Fit First
Design Intent
How To Use It
Boundaries And Review