@orchyn/mcp 1.11.0 → 1.12.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/dist/shared/tools.js +3 -1
- package/package.json +1 -1
package/dist/shared/tools.js
CHANGED
|
@@ -10,6 +10,8 @@ import { z } from "zod";
|
|
|
10
10
|
import { OrchynError } from "./orchyn.js";
|
|
11
11
|
import { formatPaywallError, runVideoAnalysis, validatePostUrl } from "./video.js";
|
|
12
12
|
import { ORCHYN_UI_TEMPLATE } from "./ui-template.js";
|
|
13
|
+
/** Current MCP server version — bumped on every deploy for traceability. */
|
|
14
|
+
export const MCP_SERVER_VERSION = "1.12.1";
|
|
13
15
|
/** MCP Apps extension identifier */
|
|
14
16
|
const UI_EXTENSION = "io.modelcontextprotocol/ui";
|
|
15
17
|
/** MIME type for MCP Apps HTML resources */
|
|
@@ -181,7 +183,7 @@ function buildAnalysisHtmlCard(result, thumbnailUrl, platform, creatorHandle, ti
|
|
|
181
183
|
return html;
|
|
182
184
|
}
|
|
183
185
|
export function createMcpServer(makeClient) {
|
|
184
|
-
const server = new McpServer({ name: "orchyn-mcp", version:
|
|
186
|
+
const server = new McpServer({ name: "orchyn-mcp", version: MCP_SERVER_VERSION }, {
|
|
185
187
|
capabilities: {
|
|
186
188
|
resources: {},
|
|
187
189
|
extensions: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchyn/mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.1",
|
|
4
4
|
"description": "MCP server for orchyn - fetch, discover and understand TikTok/Instagram/YouTube/X posts with AI (media metadata, niche discovery, hook & viral analysis)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|