-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcp-server-tmdb.json
69 lines (69 loc) · 1.61 KB
/
mcp-server-tmdb.json
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
{
"server_info": {
"name": "example-servers/tmdb",
"description": "A server that provides access to movies from The Movie Database (TMDB).",
"repo_url": "https://github.com/Laksh-star/mcp-server-tmdb",
"server_type": "Community Servers",
"server_category": [
"Web Scraping",
"Data Access"
],
"server_version": "0.1.0"
},
"tools": [
{
"name": "search_movies",
"description": "Search for movies by title or keywords",
"input_schema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query for movie titles"
}
},
"required": [
"query"
]
}
},
{
"name": "get_recommendations",
"description": "Get movie recommendations based on a movie ID",
"input_schema": {
"type": "object",
"properties": {
"movieId": {
"type": "string",
"description": "TMDB movie ID to get recommendations for"
}
},
"required": [
"movieId"
]
}
},
{
"name": "get_trending",
"description": "Get trending movies for a time window",
"input_schema": {
"type": "object",
"properties": {
"timeWindow": {
"type": "string",
"enum": [
"day",
"week"
],
"description": "Time window for trending movies"
}
},
"required": [
"timeWindow"
]
}
}
],
"resources": [],
"prompts": []
}