mongodb-mcp-server 0.1.2 → 0.2.0
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/.github/pull_request_template.md +5 -0
- package/.github/workflows/accuracy-tests.yml +55 -0
- package/.github/workflows/check.yml +1 -1
- package/.github/workflows/code_health.yaml +4 -4
- package/.github/workflows/code_health_fork.yaml +0 -14
- package/.github/workflows/dependabot_pr.yaml +26 -0
- package/.github/workflows/docker.yaml +1 -1
- package/.github/workflows/jira-issue.yml +72 -0
- package/.smithery/smithery.yaml +10 -0
- package/.vscode/extensions.json +1 -1
- package/.vscode/launch.json +11 -1
- package/.vscode/settings.json +1 -11
- package/Dockerfile +1 -0
- package/README.md +132 -31
- package/dist/common/atlas/accessListUtils.js +36 -0
- package/dist/common/atlas/accessListUtils.js.map +1 -0
- package/dist/common/atlas/apiClient.js +25 -6
- package/dist/common/atlas/apiClient.js.map +1 -1
- package/dist/common/atlas/cluster.js +1 -1
- package/dist/common/atlas/cluster.js.map +1 -1
- package/dist/{config.js → common/config.js} +8 -1
- package/dist/common/config.js.map +1 -0
- package/dist/{errors.js → common/errors.js} +1 -0
- package/dist/common/errors.js.map +1 -0
- package/dist/{logger.js → common/logger.js} +20 -19
- package/dist/common/logger.js.map +1 -0
- package/dist/common/managedTimeout.js +20 -0
- package/dist/common/managedTimeout.js.map +1 -0
- package/dist/common/packageInfo.js.map +1 -0
- package/dist/{session.js → common/session.js} +20 -21
- package/dist/common/session.js.map +1 -0
- package/dist/common/sessionStore.js +73 -0
- package/dist/common/sessionStore.js.map +1 -0
- package/dist/helpers/container.js +28 -0
- package/dist/helpers/container.js.map +1 -0
- package/dist/helpers/generatePassword.js.map +1 -0
- package/dist/helpers/indexCheck.js +63 -0
- package/dist/helpers/indexCheck.js.map +1 -0
- package/dist/index.js +30 -37
- package/dist/index.js.map +1 -1
- package/dist/server.js +44 -7
- package/dist/server.js.map +1 -1
- package/dist/telemetry/constants.js +1 -1
- package/dist/telemetry/constants.js.map +1 -1
- package/dist/telemetry/telemetry.js +86 -116
- package/dist/telemetry/telemetry.js.map +1 -1
- package/dist/tools/atlas/atlasTool.js +3 -3
- package/dist/tools/atlas/atlasTool.js.map +1 -1
- package/dist/tools/atlas/connect/connectCluster.js +198 -0
- package/dist/tools/atlas/connect/connectCluster.js.map +1 -0
- package/dist/tools/atlas/create/createAccessList.js +9 -10
- package/dist/tools/atlas/create/createAccessList.js.map +1 -1
- package/dist/tools/atlas/create/createDBUser.js +3 -1
- package/dist/tools/atlas/create/createDBUser.js.map +1 -1
- package/dist/tools/atlas/create/createFreeCluster.js +2 -0
- package/dist/tools/atlas/create/createFreeCluster.js.map +1 -1
- package/dist/tools/atlas/create/createProject.js.map +1 -1
- package/dist/tools/atlas/read/inspectAccessList.js.map +1 -1
- package/dist/tools/atlas/read/inspectCluster.js.map +1 -1
- package/dist/tools/atlas/read/listAlerts.js.map +1 -1
- package/dist/tools/atlas/read/listClusters.js.map +1 -1
- package/dist/tools/atlas/read/listDBUsers.js.map +1 -1
- package/dist/tools/atlas/read/listOrgs.js.map +1 -1
- package/dist/tools/atlas/read/listProjects.js.map +1 -1
- package/dist/tools/atlas/tools.js +1 -1
- package/dist/tools/atlas/tools.js.map +1 -1
- package/dist/tools/mongodb/{metadata → connect}/connect.js +7 -4
- package/dist/tools/mongodb/connect/connect.js.map +1 -0
- package/dist/tools/mongodb/create/createCollection.js.map +1 -1
- package/dist/tools/mongodb/create/createIndex.js +1 -1
- package/dist/tools/mongodb/create/createIndex.js.map +1 -1
- package/dist/tools/mongodb/create/insertMany.js +1 -1
- package/dist/tools/mongodb/create/insertMany.js.map +1 -1
- package/dist/tools/mongodb/delete/deleteMany.js +20 -1
- package/dist/tools/mongodb/delete/deleteMany.js.map +1 -1
- package/dist/tools/mongodb/delete/dropCollection.js.map +1 -1
- package/dist/tools/mongodb/delete/dropDatabase.js.map +1 -1
- package/dist/tools/mongodb/metadata/collectionSchema.js.map +1 -1
- package/dist/tools/mongodb/metadata/collectionStorageSize.js.map +1 -1
- package/dist/tools/mongodb/metadata/dbStats.js.map +1 -1
- package/dist/tools/mongodb/metadata/explain.js +2 -2
- package/dist/tools/mongodb/metadata/explain.js.map +1 -1
- package/dist/tools/mongodb/metadata/listCollections.js.map +1 -1
- package/dist/tools/mongodb/metadata/listDatabases.js.map +1 -1
- package/dist/tools/mongodb/metadata/logs.js.map +1 -1
- package/dist/tools/mongodb/mongodbTool.js +47 -10
- package/dist/tools/mongodb/mongodbTool.js.map +1 -1
- package/dist/tools/mongodb/read/aggregate.js +10 -1
- package/dist/tools/mongodb/read/aggregate.js.map +1 -1
- package/dist/tools/mongodb/read/collectionIndexes.js.map +1 -1
- package/dist/tools/mongodb/read/count.js +15 -1
- package/dist/tools/mongodb/read/count.js.map +1 -1
- package/dist/tools/mongodb/read/find.js +14 -4
- package/dist/tools/mongodb/read/find.js.map +1 -1
- package/dist/tools/mongodb/tools.js +1 -1
- package/dist/tools/mongodb/tools.js.map +1 -1
- package/dist/tools/mongodb/update/renameCollection.js.map +1 -1
- package/dist/tools/mongodb/update/updateMany.js +24 -2
- package/dist/tools/mongodb/update/updateMany.js.map +1 -1
- package/dist/tools/tool.js +12 -9
- package/dist/tools/tool.js.map +1 -1
- package/dist/transports/base.js +26 -0
- package/dist/transports/base.js.map +1 -0
- package/dist/{helpers/EJsonTransport.js → transports/stdio.js} +24 -2
- package/dist/transports/stdio.js.map +1 -0
- package/dist/transports/streamableHttp.js +140 -0
- package/dist/transports/streamableHttp.js.map +1 -0
- package/eslint.config.js +13 -4
- package/package.json +43 -33
- package/resources/test-summary-template.html +415 -0
- package/scripts/accuracy/generateTestSummary.ts +335 -0
- package/scripts/accuracy/runAccuracyTests.sh +45 -0
- package/scripts/accuracy/updateAccuracyRunStatus.ts +21 -0
- package/src/common/atlas/accessListUtils.ts +54 -0
- package/src/common/atlas/apiClient.ts +25 -6
- package/src/common/atlas/cluster.ts +1 -1
- package/src/{config.ts → common/config.ts} +16 -2
- package/src/{errors.ts → common/errors.ts} +1 -0
- package/src/{logger.ts → common/logger.ts} +21 -24
- package/src/common/managedTimeout.ts +27 -0
- package/src/{session.ts → common/session.ts} +24 -26
- package/src/common/sessionStore.ts +111 -0
- package/src/helpers/container.ts +35 -0
- package/src/helpers/indexCheck.ts +83 -0
- package/src/index.ts +30 -40
- package/src/server.ts +55 -11
- package/src/telemetry/constants.ts +1 -1
- package/src/telemetry/telemetry.ts +109 -153
- package/src/telemetry/types.ts +2 -1
- package/src/tools/atlas/atlasTool.ts +4 -4
- package/src/tools/atlas/connect/connectCluster.ts +259 -0
- package/src/tools/atlas/create/createAccessList.ts +15 -13
- package/src/tools/atlas/create/createDBUser.ts +5 -3
- package/src/tools/atlas/create/createFreeCluster.ts +4 -2
- package/src/tools/atlas/create/createProject.ts +2 -2
- package/src/tools/atlas/read/inspectAccessList.ts +2 -2
- package/src/tools/atlas/read/inspectCluster.ts +2 -2
- package/src/tools/atlas/read/listAlerts.ts +2 -2
- package/src/tools/atlas/read/listClusters.ts +2 -2
- package/src/tools/atlas/read/listDBUsers.ts +2 -2
- package/src/tools/atlas/read/listOrgs.ts +2 -2
- package/src/tools/atlas/read/listProjects.ts +2 -2
- package/src/tools/atlas/tools.ts +1 -1
- package/src/tools/mongodb/{metadata → connect}/connect.ts +12 -9
- package/src/tools/mongodb/create/createCollection.ts +2 -2
- package/src/tools/mongodb/create/createIndex.ts +3 -3
- package/src/tools/mongodb/create/insertMany.ts +3 -3
- package/src/tools/mongodb/delete/deleteMany.ts +24 -3
- package/src/tools/mongodb/delete/dropCollection.ts +2 -2
- package/src/tools/mongodb/delete/dropDatabase.ts +2 -2
- package/src/tools/mongodb/metadata/collectionSchema.ts +2 -2
- package/src/tools/mongodb/metadata/collectionStorageSize.ts +2 -2
- package/src/tools/mongodb/metadata/dbStats.ts +2 -2
- package/src/tools/mongodb/metadata/explain.ts +4 -4
- package/src/tools/mongodb/metadata/listCollections.ts +2 -2
- package/src/tools/mongodb/metadata/listDatabases.ts +2 -2
- package/src/tools/mongodb/metadata/logs.ts +2 -2
- package/src/tools/mongodb/mongodbTool.ts +60 -14
- package/src/tools/mongodb/read/aggregate.ts +14 -3
- package/src/tools/mongodb/read/collectionIndexes.ts +2 -2
- package/src/tools/mongodb/read/count.ts +19 -3
- package/src/tools/mongodb/read/find.ts +20 -6
- package/src/tools/mongodb/tools.ts +1 -1
- package/src/tools/mongodb/update/renameCollection.ts +2 -2
- package/src/tools/mongodb/update/updateMany.ts +28 -4
- package/src/tools/tool.ts +23 -18
- package/src/transports/base.ts +34 -0
- package/src/{helpers/EJsonTransport.ts → transports/stdio.ts} +30 -1
- package/src/transports/streamableHttp.ts +178 -0
- package/tests/accuracy/aggregate.test.ts +27 -0
- package/tests/accuracy/collectionIndexes.test.ts +40 -0
- package/tests/accuracy/collectionSchema.test.ts +28 -0
- package/tests/accuracy/collectionStorageSize.test.ts +41 -0
- package/tests/accuracy/count.test.ts +44 -0
- package/tests/accuracy/createCollection.test.ts +46 -0
- package/tests/accuracy/createIndex.test.ts +37 -0
- package/tests/accuracy/dbStats.test.ts +15 -0
- package/tests/accuracy/deleteMany.test.ts +44 -0
- package/tests/accuracy/dropCollection.test.ts +74 -0
- package/tests/accuracy/dropDatabase.test.ts +41 -0
- package/tests/accuracy/explain.test.ts +73 -0
- package/tests/accuracy/find.test.ts +114 -0
- package/tests/accuracy/insertMany.test.ts +48 -0
- package/tests/accuracy/listCollections.test.ts +60 -0
- package/tests/accuracy/listDatabases.test.ts +31 -0
- package/tests/accuracy/logs.test.ts +28 -0
- package/tests/accuracy/renameCollection.test.ts +31 -0
- package/tests/accuracy/sdk/accuracyResultStorage/diskStorage.ts +189 -0
- package/tests/accuracy/sdk/accuracyResultStorage/getAccuracyResultStorage.ts +11 -0
- package/tests/accuracy/sdk/accuracyResultStorage/mongodbStorage.ts +151 -0
- package/tests/accuracy/sdk/accuracyResultStorage/resultStorage.ts +117 -0
- package/tests/accuracy/sdk/accuracyScorer.ts +93 -0
- package/tests/accuracy/sdk/accuracyTestingClient.ts +94 -0
- package/tests/accuracy/sdk/agent.ts +56 -0
- package/tests/accuracy/sdk/constants.ts +26 -0
- package/tests/accuracy/sdk/describeAccuracyTests.ts +126 -0
- package/tests/accuracy/sdk/gitInfo.ts +7 -0
- package/tests/accuracy/sdk/matcher.ts +193 -0
- package/tests/accuracy/sdk/models.ts +95 -0
- package/tests/accuracy/test-data-dumps/comics.books.json +417 -0
- package/tests/accuracy/test-data-dumps/comics.characters.json +402 -0
- package/tests/accuracy/test-data-dumps/mflix.movies.json +496 -0
- package/tests/accuracy/test-data-dumps/mflix.shows.json +572 -0
- package/tests/accuracy/updateMany.test.ts +42 -0
- package/tests/integration/helpers.ts +9 -9
- package/tests/integration/indexCheck.test.ts +464 -0
- package/tests/integration/server.test.ts +6 -4
- package/tests/integration/telemetry.test.ts +29 -0
- package/tests/integration/tools/atlas/accessLists.test.ts +22 -2
- package/tests/integration/tools/atlas/alerts.test.ts +3 -2
- package/tests/integration/tools/atlas/atlasHelpers.ts +3 -0
- package/tests/integration/tools/atlas/clusters.test.ts +68 -16
- package/tests/integration/tools/atlas/dbUsers.test.ts +14 -1
- package/tests/integration/tools/atlas/orgs.test.ts +2 -1
- package/tests/integration/tools/atlas/projects.test.ts +4 -3
- package/tests/integration/tools/mongodb/{metadata → connect}/connect.test.ts +34 -3
- package/tests/integration/tools/mongodb/create/createCollection.test.ts +1 -0
- package/tests/integration/tools/mongodb/create/createIndex.test.ts +1 -0
- package/tests/integration/tools/mongodb/create/insertMany.test.ts +1 -0
- package/tests/integration/tools/mongodb/delete/deleteMany.test.ts +1 -0
- package/tests/integration/tools/mongodb/delete/dropCollection.test.ts +1 -1
- package/tests/integration/tools/mongodb/delete/dropDatabase.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/collectionSchema.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/collectionStorageSize.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/dbStats.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/explain.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/listCollections.test.ts +1 -0
- package/tests/integration/tools/mongodb/metadata/listDatabases.test.ts +3 -2
- package/tests/integration/tools/mongodb/metadata/logs.test.ts +1 -0
- package/tests/integration/tools/mongodb/mongodbHelpers.ts +67 -2
- package/tests/integration/tools/mongodb/read/aggregate.test.ts +2 -1
- package/tests/integration/tools/mongodb/read/collectionIndexes.test.ts +1 -0
- package/tests/integration/tools/mongodb/read/count.test.ts +1 -0
- package/tests/integration/tools/mongodb/read/find.test.ts +2 -1
- package/tests/integration/tools/mongodb/update/renameCollection.test.ts +1 -0
- package/tests/integration/tools/mongodb/update/updateMany.test.ts +1 -0
- package/tests/integration/transports/stdio.test.ts +40 -0
- package/tests/integration/transports/streamableHttp.test.ts +56 -0
- package/tests/matchers/toIncludeSameMembers.test.ts +59 -0
- package/tests/matchers/toIncludeSameMembers.ts +12 -0
- package/tests/setup.ts +7 -0
- package/tests/unit/accessListUtils.test.ts +39 -0
- package/tests/unit/accuracyScorer.test.ts +390 -0
- package/tests/unit/{apiClient.test.ts → common/apiClient.test.ts} +15 -15
- package/tests/unit/common/managedTimeout.test.ts +67 -0
- package/tests/unit/{session.test.ts → common/session.test.ts} +7 -12
- package/tests/unit/helpers/indexCheck.test.ts +150 -0
- package/tests/unit/telemetry.test.ts +99 -137
- package/tests/unit/{EJsonTransport.test.ts → transports/stdio.test.ts} +4 -4
- package/tests/vitest.d.ts +11 -0
- package/tsconfig.json +0 -1
- package/{tsconfig.jest.json → tsconfig.test.json} +1 -2
- package/vitest.config.ts +41 -0
- package/dist/common/atlas/generatePassword.js.map +0 -1
- package/dist/config.js.map +0 -1
- package/dist/errors.js.map +0 -1
- package/dist/helpers/EJsonTransport.js.map +0 -1
- package/dist/helpers/packageInfo.js.map +0 -1
- package/dist/logger.js.map +0 -1
- package/dist/session.js.map +0 -1
- package/dist/tools/atlas/metadata/connectCluster.js +0 -100
- package/dist/tools/atlas/metadata/connectCluster.js.map +0 -1
- package/dist/tools/mongodb/metadata/connect.js.map +0 -1
- package/global.d.ts +0 -1
- package/jest.config.cjs +0 -22
- package/src/tools/atlas/metadata/connectCluster.ts +0 -121
- /package/dist/{helpers → common}/packageInfo.js +0 -0
- /package/dist/{common/atlas → helpers}/generatePassword.js +0 -0
- /package/src/{helpers → common}/packageInfo.ts +0 -0
- /package/src/{common/atlas → helpers}/generatePassword.ts +0 -0
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"_id": "bf96c9f7-17be-467c-9f5e-3f19dc2e9ed4",
|
|
4
|
+
"title": "Human sell",
|
|
5
|
+
"release_year": 1993,
|
|
6
|
+
"genres": ["Sci-Fi"],
|
|
7
|
+
"director": "Christina Collins",
|
|
8
|
+
"cast": ["Jeremy Marks", "Matthew Moore", "Erica Miller", "Beth Morales"],
|
|
9
|
+
"runtime": 139,
|
|
10
|
+
"rating": 9.3
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"_id": "ab338dcb-c541-4d39-ba3d-58e4ebcac16c",
|
|
14
|
+
"title": "Trial we much",
|
|
15
|
+
"release_year": 2020,
|
|
16
|
+
"genres": ["Horror", "Comedy"],
|
|
17
|
+
"director": "Steven Miles",
|
|
18
|
+
"cast": [
|
|
19
|
+
"Patrick Huynh",
|
|
20
|
+
"Darrell Thompson",
|
|
21
|
+
"Lindsay Thompson",
|
|
22
|
+
"Brandi Cooper"
|
|
23
|
+
],
|
|
24
|
+
"runtime": 149,
|
|
25
|
+
"rating": 5.0
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"_id": "2bd3ed9f-cbeb-4c44-bec7-01d51c3dd7db",
|
|
29
|
+
"title": "Someone",
|
|
30
|
+
"release_year": 1996,
|
|
31
|
+
"genres": ["Action", "Horror"],
|
|
32
|
+
"director": "Steven Miles",
|
|
33
|
+
"cast": [
|
|
34
|
+
"Carrie Cummings",
|
|
35
|
+
"Patricia Rice",
|
|
36
|
+
"Suzanne Collins",
|
|
37
|
+
"April Murray",
|
|
38
|
+
"Kimberly Shaw"
|
|
39
|
+
],
|
|
40
|
+
"runtime": 153,
|
|
41
|
+
"rating": 2.6
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"_id": "fb35d6f3-bda5-450f-8873-56e035e76c42",
|
|
45
|
+
"title": "Without our",
|
|
46
|
+
"release_year": 2012,
|
|
47
|
+
"genres": ["Comedy"],
|
|
48
|
+
"director": "Christina Collins",
|
|
49
|
+
"cast": [
|
|
50
|
+
"Rodney Gray",
|
|
51
|
+
"Mr. Joseph Allen",
|
|
52
|
+
"Heather Robles",
|
|
53
|
+
"Eric Edwards",
|
|
54
|
+
"James Wilson"
|
|
55
|
+
],
|
|
56
|
+
"runtime": 143,
|
|
57
|
+
"rating": 9.1
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"_id": "4b0d5f7a-c551-4995-aece-a5a585d238a7",
|
|
61
|
+
"title": "Cost anything",
|
|
62
|
+
"release_year": 2002,
|
|
63
|
+
"genres": ["Romance", "Action"],
|
|
64
|
+
"director": "Bryan Andrews",
|
|
65
|
+
"cast": ["Gregory Mullins", "Jillian Arroyo", "Angela Reed"],
|
|
66
|
+
"runtime": 112,
|
|
67
|
+
"rating": 3.8
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"_id": "797e4ee5-eff4-45f4-a0d7-40f62f7bd138",
|
|
71
|
+
"title": "Hold green energy their",
|
|
72
|
+
"release_year": 1989,
|
|
73
|
+
"genres": ["Horror"],
|
|
74
|
+
"director": "Christina Collins",
|
|
75
|
+
"cast": [
|
|
76
|
+
"Eduardo Carey",
|
|
77
|
+
"Jodi Miller",
|
|
78
|
+
"Ronald Johnson",
|
|
79
|
+
"Lindsay Hernandez"
|
|
80
|
+
],
|
|
81
|
+
"runtime": 126,
|
|
82
|
+
"rating": 7.4
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"_id": "1b81c45b-1d09-47dc-871f-ace109107446",
|
|
86
|
+
"title": "Choose ability start",
|
|
87
|
+
"release_year": 1990,
|
|
88
|
+
"genres": ["Drama", "Comedy"],
|
|
89
|
+
"director": "Bryan Andrews",
|
|
90
|
+
"cast": [
|
|
91
|
+
"Tyler Daniels",
|
|
92
|
+
"Gregory Harris",
|
|
93
|
+
"Whitney Swanson",
|
|
94
|
+
"Pamela Ramirez"
|
|
95
|
+
],
|
|
96
|
+
"runtime": 141,
|
|
97
|
+
"rating": 5.6
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"_id": "400a08be-f07b-416a-8cdc-46c9886b812b",
|
|
101
|
+
"title": "Cover perhaps",
|
|
102
|
+
"release_year": 2022,
|
|
103
|
+
"genres": ["Drama"],
|
|
104
|
+
"director": "Daniel Wallace",
|
|
105
|
+
"cast": ["Victoria Price", "Holly Ross", "Michele Jones"],
|
|
106
|
+
"runtime": 173,
|
|
107
|
+
"rating": 4.3
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"_id": "4d4b5420-83e1-4ecd-9c86-238394a1fd0f",
|
|
111
|
+
"title": "Policy particularly",
|
|
112
|
+
"release_year": 2003,
|
|
113
|
+
"genres": ["Comedy"],
|
|
114
|
+
"director": "Brittany Parker",
|
|
115
|
+
"cast": ["Emily Haynes", "Crystal Johnson", "Ernest Jones"],
|
|
116
|
+
"runtime": 154,
|
|
117
|
+
"rating": 6.6
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"_id": "9a489559-ab9d-4dbb-b3e7-d65895b27704",
|
|
121
|
+
"title": "Store care",
|
|
122
|
+
"release_year": 2017,
|
|
123
|
+
"genres": ["Romance", "Sci-Fi"],
|
|
124
|
+
"director": "Sara Stewart",
|
|
125
|
+
"cast": [
|
|
126
|
+
"Katherine Matthews",
|
|
127
|
+
"Stacey Wolf",
|
|
128
|
+
"Laurie Blackwell",
|
|
129
|
+
"Luis Ortiz",
|
|
130
|
+
"Christopher Vasquez"
|
|
131
|
+
],
|
|
132
|
+
"runtime": 168,
|
|
133
|
+
"rating": 7.7
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"_id": "99e75e60-6466-4314-92c3-00c433a06600",
|
|
137
|
+
"title": "Section close bad",
|
|
138
|
+
"release_year": 2024,
|
|
139
|
+
"genres": ["Drama", "Comedy"],
|
|
140
|
+
"director": "Bryan Andrews",
|
|
141
|
+
"cast": [
|
|
142
|
+
"Heather Marshall",
|
|
143
|
+
"Alexander Austin",
|
|
144
|
+
"Stephanie Villarreal MD",
|
|
145
|
+
"Ryan Marquez"
|
|
146
|
+
],
|
|
147
|
+
"runtime": 180,
|
|
148
|
+
"rating": 7.7
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"_id": "726d0c12-4bab-4684-b8e4-5ba795c88273",
|
|
152
|
+
"title": "Become stand",
|
|
153
|
+
"release_year": 2001,
|
|
154
|
+
"genres": ["Sci-Fi", "Thriller"],
|
|
155
|
+
"director": "Brian Martinez",
|
|
156
|
+
"cast": ["Robert Ross", "Kimberly Williamson", "Pam Wyatt"],
|
|
157
|
+
"runtime": 162,
|
|
158
|
+
"rating": 1.5
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"_id": "aad23b4b-ddb9-48bd-9b48-b63da1874bb0",
|
|
162
|
+
"title": "I case",
|
|
163
|
+
"release_year": 2012,
|
|
164
|
+
"genres": ["Drama", "Comedy"],
|
|
165
|
+
"director": "Brittany Parker",
|
|
166
|
+
"cast": [
|
|
167
|
+
"Justin Davis",
|
|
168
|
+
"Karen Doyle",
|
|
169
|
+
"Daniel Jackson",
|
|
170
|
+
"Courtney Mcdonald"
|
|
171
|
+
],
|
|
172
|
+
"runtime": 122,
|
|
173
|
+
"rating": 3.1
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"_id": "0d1ce099-18f1-4608-9c5b-5eb8b5870760",
|
|
177
|
+
"title": "No organization style",
|
|
178
|
+
"release_year": 2013,
|
|
179
|
+
"genres": ["Comedy"],
|
|
180
|
+
"director": "Christina Collins",
|
|
181
|
+
"cast": ["Benjamin Whitney", "Joseph Bush", "Barbara Griffin"],
|
|
182
|
+
"runtime": 167,
|
|
183
|
+
"rating": 9.6
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"_id": "15855c7b-ece2-4238-b995-57f6207509ea",
|
|
187
|
+
"title": "Computer garden",
|
|
188
|
+
"release_year": 2012,
|
|
189
|
+
"genres": ["Horror"],
|
|
190
|
+
"director": "Steven Miles",
|
|
191
|
+
"cast": ["Darlene Lee", "Tina Wang", "Nathan Mayo"],
|
|
192
|
+
"runtime": 146,
|
|
193
|
+
"rating": 6.5
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"_id": "e8a6ff98-1e7e-4481-a467-39ebbfc79f67",
|
|
197
|
+
"title": "Trip information feel",
|
|
198
|
+
"release_year": 2008,
|
|
199
|
+
"genres": ["Action", "Thriller"],
|
|
200
|
+
"director": "Brittany Parker",
|
|
201
|
+
"cast": ["Kelly Walsh", "Michael Rocha"],
|
|
202
|
+
"runtime": 148,
|
|
203
|
+
"rating": 9.8
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"_id": "ef95e7a5-7f73-462e-bd03-c924a8876a7b",
|
|
207
|
+
"title": "It project low part",
|
|
208
|
+
"release_year": 1992,
|
|
209
|
+
"genres": ["Horror"],
|
|
210
|
+
"director": "Christina Collins",
|
|
211
|
+
"cast": [
|
|
212
|
+
"Sheena Murphy",
|
|
213
|
+
"Amanda Miller",
|
|
214
|
+
"Erica Curtis",
|
|
215
|
+
"Roger Jones",
|
|
216
|
+
"Andrew Simpson"
|
|
217
|
+
],
|
|
218
|
+
"runtime": 161,
|
|
219
|
+
"rating": 2.4
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"_id": "efd2f4f4-1004-4b4e-8bc9-390466a6f77a",
|
|
223
|
+
"title": "Near attorney discuss",
|
|
224
|
+
"release_year": 1983,
|
|
225
|
+
"genres": ["Comedy"],
|
|
226
|
+
"director": "Christina Collins",
|
|
227
|
+
"cast": [
|
|
228
|
+
"Chase Myers",
|
|
229
|
+
"Benjamin Kelly",
|
|
230
|
+
"Thomas Summers MD",
|
|
231
|
+
"Jessica Woods"
|
|
232
|
+
],
|
|
233
|
+
"runtime": 174,
|
|
234
|
+
"rating": 9.5
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"_id": "07f2cb6e-819e-4ff4-b3ba-134d3d9af549",
|
|
238
|
+
"title": "Whether know",
|
|
239
|
+
"release_year": 2009,
|
|
240
|
+
"genres": ["Comedy", "Thriller"],
|
|
241
|
+
"director": "Bryan Andrews",
|
|
242
|
+
"cast": ["Amy Reed", "William Williams", "Steven Lawrence"],
|
|
243
|
+
"runtime": 134,
|
|
244
|
+
"rating": 9.6
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"_id": "ab5948c9-088b-42d6-89d9-42c4603c8b19",
|
|
248
|
+
"title": "Against place",
|
|
249
|
+
"release_year": 2017,
|
|
250
|
+
"genres": ["Drama", "Romance"],
|
|
251
|
+
"director": "Daniel Wallace",
|
|
252
|
+
"cast": [
|
|
253
|
+
"Brittany Thompson",
|
|
254
|
+
"Clinton Bishop",
|
|
255
|
+
"Terri Meyer",
|
|
256
|
+
"Stacey Phillips",
|
|
257
|
+
"Alexander Hunt"
|
|
258
|
+
],
|
|
259
|
+
"runtime": 152,
|
|
260
|
+
"rating": 5.0
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"_id": "ef7f63fa-b25f-4aea-98e2-d7bdecc26ef5",
|
|
264
|
+
"title": "Return yard",
|
|
265
|
+
"release_year": 1994,
|
|
266
|
+
"genres": ["Horror"],
|
|
267
|
+
"director": "Christina Collins",
|
|
268
|
+
"cast": ["Mason Lara", "Taylor Salinas", "Tim Foster", "Erin Sharp"],
|
|
269
|
+
"runtime": 99,
|
|
270
|
+
"rating": 8.8
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"_id": "b532e3c8-6292-4f9d-879f-1f070b1a6992",
|
|
274
|
+
"title": "Certain fish",
|
|
275
|
+
"release_year": 2009,
|
|
276
|
+
"genres": ["Romance"],
|
|
277
|
+
"director": "Steven Miles",
|
|
278
|
+
"cast": [
|
|
279
|
+
"Jonathan King",
|
|
280
|
+
"Caitlyn Costa DDS",
|
|
281
|
+
"Steve Davis",
|
|
282
|
+
"Perry Anderson"
|
|
283
|
+
],
|
|
284
|
+
"runtime": 130,
|
|
285
|
+
"rating": 8.6
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"_id": "c95e74b0-e47e-4d10-b847-8caa20b94b32",
|
|
289
|
+
"title": "Agreement like program",
|
|
290
|
+
"release_year": 2004,
|
|
291
|
+
"genres": ["Sci-Fi"],
|
|
292
|
+
"director": "Daniel Jackson",
|
|
293
|
+
"cast": [
|
|
294
|
+
"Ashley Green",
|
|
295
|
+
"Rebecca Osborne",
|
|
296
|
+
"Robert Williams",
|
|
297
|
+
"Breanna Dunn",
|
|
298
|
+
"Philip Vargas"
|
|
299
|
+
],
|
|
300
|
+
"runtime": 110,
|
|
301
|
+
"rating": 8.1
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"_id": "791688be-4358-45ab-956e-71fe3fd35d19",
|
|
305
|
+
"title": "Floor seven then",
|
|
306
|
+
"release_year": 2009,
|
|
307
|
+
"genres": ["Horror"],
|
|
308
|
+
"director": "Daniel Wallace",
|
|
309
|
+
"cast": ["Dustin Wright", "Crystal Young"],
|
|
310
|
+
"runtime": 143,
|
|
311
|
+
"rating": 4.8
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"_id": "488fd79d-dde6-4462-9b90-339d1f3d7474",
|
|
315
|
+
"title": "Like rather paper",
|
|
316
|
+
"release_year": 2006,
|
|
317
|
+
"genres": ["Drama"],
|
|
318
|
+
"director": "Spencer Gillespie",
|
|
319
|
+
"cast": ["Sean Moyer", "James Edwards", "Tara Lee", "Robert Scott"],
|
|
320
|
+
"runtime": 175,
|
|
321
|
+
"rating": 9.1
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"_id": "3da68e4d-ef14-4fab-9243-19075262e5ca",
|
|
325
|
+
"title": "Argue hospital",
|
|
326
|
+
"release_year": 1994,
|
|
327
|
+
"genres": ["Romance", "Sci-Fi"],
|
|
328
|
+
"director": "Amanda Young",
|
|
329
|
+
"cast": [
|
|
330
|
+
"Carolyn Williams",
|
|
331
|
+
"Jasmin Sampson",
|
|
332
|
+
"Phillip Levy",
|
|
333
|
+
"Brenda Clark",
|
|
334
|
+
"Lauren Perry"
|
|
335
|
+
],
|
|
336
|
+
"runtime": 149,
|
|
337
|
+
"rating": 9.5
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"_id": "f5206a16-4dca-4c1e-b3aa-0d09f2082601",
|
|
341
|
+
"title": "Become after card",
|
|
342
|
+
"release_year": 1986,
|
|
343
|
+
"genres": ["Sci-Fi", "Horror"],
|
|
344
|
+
"director": "Brian Martinez",
|
|
345
|
+
"cast": ["Rhonda Ochoa", "Charlene Castillo"],
|
|
346
|
+
"runtime": 100,
|
|
347
|
+
"rating": 8.5
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"_id": "fbf30e42-ae6d-4775-bb3e-c5c127ddea06",
|
|
351
|
+
"title": "Born authority attention",
|
|
352
|
+
"release_year": 1994,
|
|
353
|
+
"genres": ["Romance"],
|
|
354
|
+
"director": "Brian Martinez",
|
|
355
|
+
"cast": ["Matthew Thomas", "Carly Perkins"],
|
|
356
|
+
"runtime": 131,
|
|
357
|
+
"rating": 4.9
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"_id": "4b85a220-8a09-46a7-bea3-a2dad8130311",
|
|
361
|
+
"title": "Local seven media",
|
|
362
|
+
"release_year": 1998,
|
|
363
|
+
"genres": ["Sci-Fi", "Drama"],
|
|
364
|
+
"director": "Amanda Young",
|
|
365
|
+
"cast": ["Jessica Perez", "Larry Atkinson"],
|
|
366
|
+
"runtime": 95,
|
|
367
|
+
"rating": 2.0
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"_id": "498597d2-3254-46ef-a800-f322a86fbd55",
|
|
371
|
+
"title": "Keep employee",
|
|
372
|
+
"release_year": 1981,
|
|
373
|
+
"genres": ["Horror"],
|
|
374
|
+
"director": "Christina Collins",
|
|
375
|
+
"cast": ["Alexis Carlson", "Andrew Stewart"],
|
|
376
|
+
"runtime": 161,
|
|
377
|
+
"rating": 6.0
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"_id": "788d9343-6908-4762-88ee-b04aba1e58b5",
|
|
381
|
+
"title": "American question generation",
|
|
382
|
+
"release_year": 1986,
|
|
383
|
+
"genres": ["Romance"],
|
|
384
|
+
"director": "Daniel Jackson",
|
|
385
|
+
"cast": ["Troy Carter", "Peter Hernandez", "Christine Brown"],
|
|
386
|
+
"runtime": 176,
|
|
387
|
+
"rating": 8.0
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"_id": "74bcf255-df91-40c0-85c0-d7b85ff84f9a",
|
|
391
|
+
"title": "Maintain out",
|
|
392
|
+
"release_year": 2000,
|
|
393
|
+
"genres": ["Sci-Fi", "Action"],
|
|
394
|
+
"director": "Brian Martinez",
|
|
395
|
+
"cast": ["Nancy Evans", "Michael Gill", "Justin Carroll"],
|
|
396
|
+
"runtime": 179,
|
|
397
|
+
"rating": 10.0
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"_id": "61ddf1d4-17b7-4c63-9bf4-5315e740dc7f",
|
|
401
|
+
"title": "Ten box study",
|
|
402
|
+
"release_year": 2011,
|
|
403
|
+
"genres": ["Horror", "Romance"],
|
|
404
|
+
"director": "Steven Miles",
|
|
405
|
+
"cast": [
|
|
406
|
+
"Mark Hicks",
|
|
407
|
+
"Michelle Dean",
|
|
408
|
+
"John Buchanan",
|
|
409
|
+
"Veronica Johnson"
|
|
410
|
+
],
|
|
411
|
+
"runtime": 147,
|
|
412
|
+
"rating": 2.5
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"_id": "ab7d8067-f0ff-4955-bc0c-baca4e56e9a4",
|
|
416
|
+
"title": "Production operation",
|
|
417
|
+
"release_year": 2014,
|
|
418
|
+
"genres": ["Horror", "Romance"],
|
|
419
|
+
"director": "Sara Stewart",
|
|
420
|
+
"cast": ["Ashley Mata", "Mark Kelly", "John West", "Harold Day"],
|
|
421
|
+
"runtime": 125,
|
|
422
|
+
"rating": 4.1
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"_id": "ccd27288-a496-447d-b01c-1f0b42edcc92",
|
|
426
|
+
"title": "What language",
|
|
427
|
+
"release_year": 2004,
|
|
428
|
+
"genres": ["Sci-Fi"],
|
|
429
|
+
"director": "Sara Stewart",
|
|
430
|
+
"cast": [
|
|
431
|
+
"Scott Mckenzie",
|
|
432
|
+
"Jason Lee",
|
|
433
|
+
"Nathan Gardner",
|
|
434
|
+
"Jamie Greene",
|
|
435
|
+
"Angela Garner"
|
|
436
|
+
],
|
|
437
|
+
"runtime": 177,
|
|
438
|
+
"rating": 3.7
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"_id": "b32dd176-938b-4ded-823a-311423fdc2ea",
|
|
442
|
+
"title": "Up usually central",
|
|
443
|
+
"release_year": 2011,
|
|
444
|
+
"genres": ["Sci-Fi", "Comedy"],
|
|
445
|
+
"director": "Daniel Jackson",
|
|
446
|
+
"cast": ["Jennifer Carlson", "Jonathan Stewart DDS", "Amy Lester"],
|
|
447
|
+
"runtime": 159,
|
|
448
|
+
"rating": 5.6
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"_id": "4aa5f384-3a05-49ff-aa9d-a0e4256c422f",
|
|
452
|
+
"title": "For boy only",
|
|
453
|
+
"release_year": 1987,
|
|
454
|
+
"genres": ["Thriller", "Action"],
|
|
455
|
+
"director": "Sara Stewart",
|
|
456
|
+
"cast": ["Gene Smith", "Robert Osborne Jr.", "Laura Fox", "Alexis Lowe"],
|
|
457
|
+
"runtime": 95,
|
|
458
|
+
"rating": 3.6
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"_id": "1c858ca4-d6e9-435c-8e25-d8b05a4e825c",
|
|
462
|
+
"title": "Site win including your",
|
|
463
|
+
"release_year": 2008,
|
|
464
|
+
"genres": ["Sci-Fi"],
|
|
465
|
+
"director": "Spencer Gillespie",
|
|
466
|
+
"cast": [
|
|
467
|
+
"John Williams",
|
|
468
|
+
"Jason Huang",
|
|
469
|
+
"Karen Klein",
|
|
470
|
+
"Gary Tran",
|
|
471
|
+
"Jessica Murphy"
|
|
472
|
+
],
|
|
473
|
+
"runtime": 178,
|
|
474
|
+
"rating": 6.2
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"_id": "bc5e5766-e998-4ec2-a40c-62ce5d39b972",
|
|
478
|
+
"title": "Sell huge hair",
|
|
479
|
+
"release_year": 1997,
|
|
480
|
+
"genres": ["Thriller", "Action"],
|
|
481
|
+
"director": "Bryan Andrews",
|
|
482
|
+
"cast": ["Thomas Johnson", "Ryan Morrow"],
|
|
483
|
+
"runtime": 157,
|
|
484
|
+
"rating": 4.4
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"_id": "090215c8-29e8-4d38-ae9b-ceb78408b982",
|
|
488
|
+
"title": "Guy rest",
|
|
489
|
+
"release_year": 1997,
|
|
490
|
+
"genres": ["Sci-Fi", "Horror"],
|
|
491
|
+
"director": "Steven Miles",
|
|
492
|
+
"cast": ["Michael Fox", "Tyler Acosta", "Tracy Adams"],
|
|
493
|
+
"runtime": 122,
|
|
494
|
+
"rating": 7.8
|
|
495
|
+
}
|
|
496
|
+
]
|