-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
330 lines (285 loc) · 10.2 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#!/usr/bin/env node
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
Tool,
} from "@modelcontextprotocol/sdk/types.js";
const AVAILABLE_SUBTITLES: Tool = {
name: "tiktok_available_subtitles",
description:
"Looks up the available subtitle, i.e., content for a TikTok video." +
"This is used for looking up if there is any content (subtitle) available to a TikTok video." +
"Supports TikTok video url as input in object" +
"Returns the available subtitle for the video which can be in different languages and different" +
"formats like Automatic Speech Recognition, Machine Translation or Creator Captions" +
"and different languages.",
inputSchema: {
type: "object",
properties: {
tiktok_url: {
type: "string",
description: "TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/1234567890",
},
},
required: ["tiktok_url"],
},
};
const GET_SUBTITLE: Tool = {
name: "tiktok_get_subtitle",
description:
"Get the subtitle (content) for a TikTok video url." +
"This is used for getting the subtitle, content or context for a TikTok video." +
"Supports TikTok video url as input and optionally language code from tool 'AVAILABLE_SUBTITLES'" +
"Returns the subtitle for the video in the requested language and format." +
"If no language code is provided, the tool will return the subtitle of automatic speech recognition.",
inputSchema: {
type: "object",
properties: {
tiktok_url: {
type: "string",
description: "TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/1234567890",
},
language_code: {
type: "string",
description: "Language code for the subtitle, e.g., en for English, es for Spanish, fr for French, etc.",
},
},
required: ["tiktok_url"]
}
};
const GET_POST_DETAILS: Tool = {
name: "tiktok_get_post_details",
description:
"Get the details of a TikTok post." +
"This is used for getting the details of a TikTok post." +
"Supports TikTok video url as input." +
"Returns the details of the video like" +
" - Description" +
" - Creator username" +
" - Hashtags" +
" - Number of likes, shares, comments, views and bookmarks" +
" - Date of creation" +
" - Duration of the video",
inputSchema: {
type: "object",
properties: {
tiktok_url: {
type: "string",
description: "TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/1234567890",
},
},
required: ["tiktok_url"],
},
};
// Server implementation
const server = new Server(
{
name: "tikneuron/tiktok-mcp",
version: "0.1.0",
},
{
capabilities: {
tools: {},
},
},
);
// Check for API key
const TIKNEURON_MCP_API_KEY = process.env.TIKNEURON_MCP_API_KEY!;
if (!TIKNEURON_MCP_API_KEY) {
console.error("Error: TIKNEURON_MCP_API_KEY environment variable is required");
process.exit(1);
}
interface AvailableSubtitle {
success?: boolean;
subtitles?: Array<{
language?: string;
source?: string;
}>;
}
interface Subtitle {
success?: boolean;
subtitles?: Array<{
language?: string;
source?: string;
}>;
subtitle_content?: string;
}
interface PostDetails {
success: boolean;
details: {
description: string;
creator: string;
hashtags: string[];
likes: string; // Note: These are strings, not numbers
shares: string;
comments: string;
views: string;
bookmarks: string;
created_at: string;
duration: number;
};
}
function isAvailableSubtitleArgs(args: unknown): args is { tiktok_url: string } {
return (
typeof args === "object" &&
args !== null &&
"tiktok_url" in args &&
typeof (args as { tiktok_url: string }).tiktok_url === "string"
);
}
function isGetSubtitleArgs(args: unknown): args is { tiktok_url: string, language_code: string } {
return (
typeof args === "object" &&
args !== null &&
"tiktok_url" in args &&
typeof (args as { tiktok_url: string }).tiktok_url === "string"
);
}
function isGetPostDetailsArgs(args: unknown): args is { tiktok_url: string } {
return (
typeof args === "object" &&
args !== null &&
"tiktok_url" in args &&
typeof (args as { tiktok_url: string }).tiktok_url === "string"
);
}
async function performAvailableSubtitle(tiktok_url: string) {
const url = new URL('https://tikneuron.com/api/mcp/available-subtitles');
url.searchParams.set('tiktok_url', tiktok_url);
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Accept-Encoding': 'gzip',
'MCP-API-KEY': TIKNEURON_MCP_API_KEY,
}
});
if (!response.ok) {
throw new Error(`TikNeuron API error: ${response.status} ${response.statusText}\n${await response.text()}`);
}
const data = await response.json() as AvailableSubtitle;
return data.subtitles?.map(subtitle => {
return `Language: ${subtitle.language}\nSource: ${subtitle.source}`;
}).join('\n\n') || 'No subtitles available';
}
async function performGetSubtitle(tiktok_url: string, language_code: string) {
const url = new URL('https://tikneuron.com/api/mcp/get-subtitles');
url.searchParams.set('tiktok_url', tiktok_url);
if (language_code){
url.searchParams.set('language_code', language_code);
}
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Accept-Encoding': 'gzip',
'MCP-API-KEY': TIKNEURON_MCP_API_KEY,
}
});
if (!response.ok) {
throw new Error(`TikNeuron API error: ${response.status} ${response.statusText}\n${await response.text()}`);
}
const data = await response.json() as Subtitle;
return data.subtitle_content || 'No subtitle available';
}
async function performGetPostDetails(tiktok_url: string) {
const url = new URL('https://tikneuron.com/api/mcp/post-detail');
url.searchParams.set('tiktok_url', tiktok_url);
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Accept-Encoding': 'gzip',
'MCP-API-KEY': TIKNEURON_MCP_API_KEY,
}
});
if (!response.ok) {
throw new Error(`TikNeuron API error: ${response.status} ${response.statusText}\n${await response.text()}`);
}
const data = await response.json() as PostDetails;
if (data.details) {
const details = data.details;
return `Description: ${details.description || 'N/A'}
Creator: ${details.creator || 'N/A'}
Hashtags: ${Array.isArray(details.hashtags) ? details.hashtags.join(', ') : 'N/A'}
Likes: ${details.likes || '0'}
Shares: ${details.shares || '0'}
Comments: ${details.comments || '0'}
Views: ${details.views || '0'}
Bookmarks: ${details.bookmarks || '0'}
Created at: ${details.created_at || 'N/A'}
Duration: ${details.duration || 0} seconds`;
} else {
return 'No details available';
}
}
// Tool handlers
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: [AVAILABLE_SUBTITLES, GET_SUBTITLE, GET_POST_DETAILS],
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
try {
const { name, arguments: args } = request.params;
if (!args) {
throw new Error("No arguments provided");
}
switch (name) {
case "tiktok_available_subtitles": {
if (!isAvailableSubtitleArgs(args)) {
throw new Error("Invalid arguments for tiktok_available_subtitles");
}
const { tiktok_url } = args;
const results = await performAvailableSubtitle(tiktok_url);
return {
content: [{ type: "text", text: results }],
isError: false,
};
}
case "tiktok_get_subtitle": {
if (!isGetSubtitleArgs(args)) {
throw new Error("Invalid arguments for tiktok_get_subtitle");
}
const { tiktok_url, language_code } = args;
const results = await performGetSubtitle(tiktok_url, language_code);
return {
content: [{ type: "text", text: results }],
isError: false,
};
}
case "tiktok_get_post_details": {
if (!isGetPostDetailsArgs(args)) {
throw new Error("Invalid arguments for tiktok_get_post_details");
}
const { tiktok_url } = args;
const results = await performGetPostDetails(tiktok_url);
return {
content: [{ type: "text", text: results }],
isError: false,
};
}
default:
return {
content: [{ type: "text", text: `Unknown tool: ${name}` }],
isError: true,
};
}
} catch (error) {
return {
content: [
{
type: "text",
text: `Error: ${error instanceof Error ? error.message : String(error)}`,
},
],
isError: true,
};
}
});
async function runServer() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error("TikTok MCP Server running on stdio");
}
runServer().catch((error) => {
console.error("Fatal error running server:", error);
process.exit(1);
});