@ikhono/mcp 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ikhono/mcp
2
2
 
3
- MCP server for [iKhono](https://github.com/ikhono/ikhono) — a runtime skill router that gives AI agents access to community-built skills on the fly.
3
+ MCP server for [iKhono](https://github.com/ikhono-ai/ikhono) — a runtime skill router that gives AI agents access to community-built skills on the fly.
4
4
 
5
5
  No local skill installation needed. Your AI agent searches, loads, and follows skills directly from the iKhono registry.
6
6
 
@@ -62,7 +62,7 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
62
62
  To use authenticated features (pinning, rating, publishing your own skills), log in with the CLI first:
63
63
 
64
64
  ```bash
65
- npx @ikhono/cli login --email you@example.com --password yourpass
65
+ npx @ikhono/cli login # GitHub SSO (opens browser)
66
66
  ```
67
67
 
68
68
  The MCP server automatically reads your token from `~/.ikhono/config.json`.
@@ -71,7 +71,7 @@ You can also pass credentials directly:
71
71
 
72
72
  ```bash
73
73
  # Via CLI args
74
- npx @ikhono/mcp --token YOUR_TOKEN --api-url https://api.ikhono.io
74
+ npx @ikhono/mcp --token YOUR_TOKEN --api-url https://ikhono.io
75
75
 
76
76
  # Via environment variables
77
77
  IKHONO_API_TOKEN=YOUR_TOKEN npx @ikhono/mcp
@@ -145,10 +145,10 @@ Skills are community-created Markdown documents with structured processes, check
145
145
 
146
146
  ## Links
147
147
 
148
- - [Getting Started](https://github.com/ikhono/ikhono/blob/main/docs/getting-started.md)
149
- - [Creating Skills](https://github.com/ikhono/ikhono/blob/main/docs/creating-skills.md)
150
- - [CLI Reference](https://github.com/ikhono/ikhono/blob/main/docs/cli-reference.md)
151
- - [GitHub](https://github.com/ikhono/ikhono)
148
+ - [Getting Started](https://github.com/ikhono-ai/ikhono/blob/main/docs/getting-started.md)
149
+ - [Creating Skills](https://github.com/ikhono-ai/ikhono/blob/main/docs/creating-skills.md)
150
+ - [CLI Reference](https://github.com/ikhono-ai/ikhono/blob/main/docs/cli-reference.md)
151
+ - [GitHub](https://github.com/ikhono-ai/ikhono)
152
152
 
153
153
  ## License
154
154
 
package/dist/index.js CHANGED
@@ -168,7 +168,7 @@ async function handleRate(client2, args2) {
168
168
  // src/version.ts
169
169
  import { createRequire } from "module";
170
170
  function getVersion() {
171
- if (true) return "0.2.0";
171
+ if (true) return "0.2.1";
172
172
  const require2 = createRequire(import.meta.url);
173
173
  return require2("../package.json").version;
174
174
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikhono/mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "iKhono MCP Server — runtime skill router for AI agents",
5
5
  "type": "module",
6
6
  "bin": {