diff --git a/server/package.json b/server/package.json index aa0eea5..4da406d 100644 --- a/server/package.json +++ b/server/package.json @@ -12,11 +12,11 @@ "test:integration": "vitest run tests/integration/*.test.ts", "test:mock": "vitest run tests/mock/*.test.ts", "crawl-servers": "tsx src/data/mcp_servers_crawler.ts --url https://raw.githubusercontent.com/modelcontextprotocol/servers/refs/heads/main/README.md", - "update-server-types": "tsx src/data/mcp_server_crawler_result_updater.ts", + "crawl-servers-postprocess": "tsx src/data/mcp_server_crawler_result_updater.ts", "clean-duplicates": "tsx src/data/clean_duplicate.ts", "process_categories": "tsx src/data/process_categories.ts", "process_locales": "tsx src/data/process_locales.ts", - "process_githubinfo": "tsx src/data/process_githubinfo.ts" + "process_githubinfo": "tsx src/data/process_githubinfo.ts --batch_size 200" }, "dependencies": { "axios": "^1.6.0", diff --git a/server/src/data/mcp_servers_official_list.json b/server/src/data/mcp_servers_official_list.json index d23171e..1e9e930 100644 --- a/server/src/data/mcp_servers_official_list.json +++ b/server/src/data/mcp_servers_official_list.json @@ -1,7 +1,7 @@ { "metadata": { "totalServers": 444, - "extractedAt": "2025-04-27T15:31:45.593Z", + "extractedAt": "2025-04-29T04:06:45.722Z", "sourceUrl": "https://raw.githubusercontent.com/modelcontextprotocol/servers/refs/heads/main/README.md", "baseRepoUrl": "https://github.com/modelcontextprotocol/servers", "defaultBranch": "main", diff --git a/server/src/data/process_githubinfo.log.json b/server/src/data/process_githubinfo.log.json index b350161..a400fd3 100644 --- a/server/src/data/process_githubinfo.log.json +++ b/server/src/data/process_githubinfo.log.json @@ -1,5 +1,5 @@ { - "lastProcessed": "2025-04-28T08:45:46.926Z", + "lastProcessed": "2025-04-29T07:41:12.835Z", "processedFiles": [ "0006b282-ac88-4c32-b76c-02476e972a04_githubprojects", "003f3571-5f97-4f84-b126-f09b89e4247e_amadeus", diff --git a/server/src/data/process_githubinfo.ts b/server/src/data/process_githubinfo.ts old mode 100644 new mode 100755 index d9a4eed..81b3d09 --- a/server/src/data/process_githubinfo.ts +++ b/server/src/data/process_githubinfo.ts @@ -8,6 +8,23 @@ import path from 'path'; import { fileURLToPath } from 'url'; import { fetchGithubInfo, extractGithubRepoInfo } from '../lib/githubEnrichment.js'; +// Parse command line arguments +const args = process.argv.slice(2); +let BATCH_SIZE: number | null = null; // Null means process all records + +// Process command line arguments +for (let i = 0; i < args.length; i++) { + if (args[i] === '--batch_size' && i + 1 < args.length) { + const batchSize = parseInt(args[i + 1], 10); + if (!isNaN(batchSize) && batchSize > 0) { + BATCH_SIZE = batchSize; + i++; // Skip the next argument as it's the value + } else { + console.error(`Invalid batch size: ${args[i + 1]}. Will process all records.`); + } + } +} + // Get the directory name in ESM const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); @@ -34,11 +51,23 @@ function ensureDirectoryExists(dirPath: string): void { } // Function to load the log file or create it if it doesn't exist -function loadProcessedLog(): ProcessedLog { +function loadProcessedLog(allFilesCount: number): ProcessedLog { if (fs.existsSync(LOG_FILE)) { try { const logContent = fs.readFileSync(LOG_FILE, 'utf8'); - return JSON.parse(logContent) as ProcessedLog; + const logData = JSON.parse(logContent) as ProcessedLog; + + // Check if we've already processed all files and should start fresh + if (logData.processedFiles.length >= allFilesCount) { + console.log(`Log file shows all ${logData.processedFiles.length} files already processed. Starting fresh.`); + return { + lastProcessed: new Date().toISOString(), + processedFiles: [], + errors: {} + }; + } + + return logData; } catch (error) { console.warn(`Error reading log file, creating a new one: ${error}`); } @@ -153,21 +182,22 @@ async function updateGithubInfoInFile(filePath: string): Promise { async function processAllFiles(): Promise { console.log('Starting GitHub info update process...'); console.log(`Looking for JSON files in: ${SPLIT_DIR}`); + console.log(BATCH_SIZE ? `Batch size set to: ${BATCH_SIZE}` : `Processing all remaining records`); + + // Get all JSON files from split directory (only in the root, not in language subdirectories) + const allFiles = fs.readdirSync(SPLIT_DIR) + .filter(file => file.endsWith('.json') && fs.statSync(path.join(SPLIT_DIR, file)).isFile()); + + console.log(`Found ${allFiles.length} total JSON files in root directory`); // Load processed log - const processedLog = loadProcessedLog(); + const processedLog = loadProcessedLog(allFiles.length); console.log(`Loaded processing log. Last run: ${processedLog.lastProcessed}`); console.log(`Previously processed ${processedLog.processedFiles.length} files`); // Setup handlers to save progress on interruption setupShutdownHandlers(processedLog); - // Get all JSON files from split directory (only in the root, not in language subdirectories) - const allFiles = fs.readdirSync(SPLIT_DIR) - .filter(file => file.endsWith('.json') && fs.statSync(path.join(SPLIT_DIR, file)).isFile()); - - console.log(`Found ${allFiles.length} total JSON files in root directory`); - // Filter out already processed files const filesToProcess = allFiles.filter(file => { const hubId = getHubIdFromFilename(file); @@ -181,11 +211,17 @@ async function processAllFiles(): Promise { return; } - // Process each file - for (const [index, file] of filesToProcess.entries()) { + // Limit the number of files to process based on batch size if provided + const filesToProcessInThisBatch = BATCH_SIZE ? filesToProcess.slice(0, BATCH_SIZE) : filesToProcess; + console.log(BATCH_SIZE + ? `Processing batch of ${filesToProcessInThisBatch.length} files (limited by batch size ${BATCH_SIZE})` + : `Processing all ${filesToProcessInThisBatch.length} remaining files`); + + // Process each file in the batch + for (const [index, file] of filesToProcessInThisBatch.entries()) { try { const hubId = getHubIdFromFilename(file); - console.log(`Processing file ${index + 1}/${filesToProcess.length}: ${file} (hubId: ${hubId})`); + console.log(`Processing file ${index + 1}/${filesToProcess.length} ${BATCH_SIZE ? `(batch_size: ${BATCH_SIZE})` : ''}: ${file} (hubId: ${hubId})`); const filePath = path.join(SPLIT_DIR, file); // Update GitHub info in the main file @@ -227,6 +263,18 @@ async function processAllFiles(): Promise { } else { console.log('GitHub info update process completed successfully!'); } + + // Report on overall progress + console.log(`Processed ${filesToProcessInThisBatch.length} files ${BATCH_SIZE ? 'in this batch' : ''}.`); + console.log(`Total progress: ${processedLog.processedFiles.length}/${allFiles.length} files processed.`); + + if (processedLog.processedFiles.length < allFiles.length) { + console.log(BATCH_SIZE + ? `Run the script again to process the next batch.` + : `Some files may have been skipped due to errors. Check the log file for details.`); + } else { + console.log(`All files have been processed. The log file will be reset on next run.`); + } } // Execute the main function diff --git a/server/src/data/split/00739d70-842d-4d36-bb98-04bde51a2220_kubernetes.json b/server/src/data/split/00739d70-842d-4d36-bb98-04bde51a2220_kubernetes.json index 1c6dcca..dbf4a0b 100644 --- a/server/src/data/split/00739d70-842d-4d36-bb98-04bde51a2220_kubernetes.json +++ b/server/src/data/split/00739d70-842d-4d36-bb98-04bde51a2220_kubernetes.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 493, + "githubStars": 502, "downloadCount": 414, "createdAt": "2025-02-17T22:30:26.383193Z", "updatedAt": "2025-04-22T03:59:36Z", diff --git a/server/src/data/split/0092c98a-a48a-41fd-bdc8-e69c66e207a8_youtubesubtitles.json b/server/src/data/split/0092c98a-a48a-41fd-bdc8-e69c66e207a8_youtubesubtitles.json index e2240ee..bf94b23 100644 --- a/server/src/data/split/0092c98a-a48a-41fd-bdc8-e69c66e207a8_youtubesubtitles.json +++ b/server/src/data/split/0092c98a-a48a-41fd-bdc8-e69c66e207a8_youtubesubtitles.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 309, + "githubStars": 310, "downloadCount": 912, "createdAt": "2025-02-17T22:27:37.384353Z", "updatedAt": "2025-03-20T17:17:38Z", diff --git a/server/src/data/split/00cca75b-f426-4279-ae1c-7e6b80636b50_youtubetranscripts.json b/server/src/data/split/00cca75b-f426-4279-ae1c-7e6b80636b50_youtubetranscripts.json index a2bac08..0329287 100644 --- a/server/src/data/split/00cca75b-f426-4279-ae1c-7e6b80636b50_youtubetranscripts.json +++ b/server/src/data/split/00cca75b-f426-4279-ae1c-7e6b80636b50_youtubetranscripts.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 169, + "githubStars": 170, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-03-10T05:10:04Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "fe3b6a8808116a5d08adfe9197f8391a6e359e77", - "githubForks": 24, + "githubForks": 25, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/00f1ad7c-0109-47d9-893d-004fe0b555f7_agentcarefhiremr.json b/server/src/data/split/00f1ad7c-0109-47d9-893d-004fe0b555f7_agentcarefhiremr.json index ab87fd2..76dae28 100644 --- a/server/src/data/split/00f1ad7c-0109-47d9-893d-004fe0b555f7_agentcarefhiremr.json +++ b/server/src/data/split/00f1ad7c-0109-47d9-893d-004fe0b555f7_agentcarefhiremr.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 39, + "githubStars": 40, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-03-13T05:56:46Z", diff --git a/server/src/data/split/022d2a79-e4da-47b2-a138-2560f3822400_elevenlabstexttospeech.json b/server/src/data/split/022d2a79-e4da-47b2-a138-2560f3822400_elevenlabstexttospeech.json index e64b26b..c9f7194 100644 --- a/server/src/data/split/022d2a79-e4da-47b2-a138-2560f3822400_elevenlabstexttospeech.json +++ b/server/src/data/split/022d2a79-e4da-47b2-a138-2560f3822400_elevenlabstexttospeech.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ba2d6d946f0334305f8a888d47338f55222f4af1", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/0272fd9a-3249-4990-bed5-d66aaa4ebdb4_browseruse.json b/server/src/data/split/0272fd9a-3249-4990-bed5-d66aaa4ebdb4_browseruse.json index a38299c..73565f3 100644 --- a/server/src/data/split/0272fd9a-3249-4990-bed5-d66aaa4ebdb4_browseruse.json +++ b/server/src/data/split/0272fd9a-3249-4990-bed5-d66aaa4ebdb4_browseruse.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 18, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-04-27T21:48:21Z", diff --git a/server/src/data/split/02f9e25f-4904-4350-8a2e-a6a0a69f9dfb_onenote.json b/server/src/data/split/02f9e25f-4904-4350-8a2e-a6a0a69f9dfb_onenote.json index 15a358e..8c8c099 100644 --- a/server/src/data/split/02f9e25f-4904-4350-8a2e-a6a0a69f9dfb_onenote.json +++ b/server/src/data/split/02f9e25f-4904-4350-8a2e-a6a0a69f9dfb_onenote.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-28T00:48:02Z", diff --git a/server/src/data/split/03490ac9-ce58-485d-9166-a295173de417_fetch.json b/server/src/data/split/03490ac9-ce58-485d-9166-a295173de417_fetch.json index 72ed559..7f02c65 100644 --- a/server/src/data/split/03490ac9-ce58-485d-9166-a295173de417_fetch.json +++ b/server/src/data/split/03490ac9-ce58-485d-9166-a295173de417_fetch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41714, + "githubStars": 42020, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/04373d12-e650-4b53-b91b-4945607391e2_postgrest.json b/server/src/data/split/04373d12-e650-4b53-b91b-4945607391e2_postgrest.json index 8535555..2313251 100644 --- a/server/src/data/split/04373d12-e650-4b53-b91b-4945607391e2_postgrest.json +++ b/server/src/data/split/04373d12-e650-4b53-b91b-4945607391e2_postgrest.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 1297, + "githubStars": 1303, "downloadCount": 390, "createdAt": "2025-02-17T22:27:20.529942Z", "updatedAt": "2025-04-25T21:14:26Z", diff --git a/server/src/data/split/045d532b-d1a6-41f0-a836-b8c40e2caacc_awsknowledgebase.json b/server/src/data/split/045d532b-d1a6-41f0-a836-b8c40e2caacc_awsknowledgebase.json index b05836d..28c633a 100644 --- a/server/src/data/split/045d532b-d1a6-41f0-a836-b8c40e2caacc_awsknowledgebase.json +++ b/server/src/data/split/045d532b-d1a6-41f0-a836-b8c40e2caacc_awsknowledgebase.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41714, + "githubStars": 42020, "downloadCount": 1086, "createdAt": "2025-02-18T05:44:51.508867Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/05460e9c-6aab-4f63-9e94-0c5c0f61bc78_inboxzero.json b/server/src/data/split/05460e9c-6aab-4f63-9e94-0c5c0f61bc78_inboxzero.json index 5181136..b7d4428 100644 --- a/server/src/data/split/05460e9c-6aab-4f63-9e94-0c5c0f61bc78_inboxzero.json +++ b/server/src/data/split/05460e9c-6aab-4f63-9e94-0c5c0f61bc78_inboxzero.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 7101, + "githubStars": 7119, "downloadCount": 0, "createdAt": "2025-03-15T07:59:28.714502+00:00", "updatedAt": "2025-04-27T08:18:13Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "bf2c0261311c2fb4b2175e378080c8fa66c52289", - "githubForks": 718, + "githubForks": 723, "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/05e19a5d-df7f-497e-9272-b36744db5cd5_cognee.json b/server/src/data/split/05e19a5d-df7f-497e-9272-b36744db5cd5_cognee.json index 2c3e2ce..c11fd2d 100644 --- a/server/src/data/split/05e19a5d-df7f-497e-9272-b36744db5cd5_cognee.json +++ b/server/src/data/split/05e19a5d-df7f-497e-9272-b36744db5cd5_cognee.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2051, + "githubStars": 2056, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-25T22:03:05Z", diff --git a/server/src/data/split/0730e308-7fb2-452e-a423-07c6c90e4ed0_mcpazuredevopsserver.json b/server/src/data/split/0730e308-7fb2-452e-a423-07c6c90e4ed0_mcpazuredevopsserver.json index b0819d3..8129767 100644 --- a/server/src/data/split/0730e308-7fb2-452e-a423-07c6c90e4ed0_mcpazuredevopsserver.json +++ b/server/src/data/split/0730e308-7fb2-452e-a423-07c6c90e4ed0_mcpazuredevopsserver.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 30, + "githubStars": 31, "downloadCount": 0, "createdAt": "2025-04-26T13:41:51.295Z", "updatedAt": "2025-04-09T19:07:12Z", diff --git a/server/src/data/split/075a1d44-e621-461f-b3ae-b454ef1ef34b_deepseekreasoner.json b/server/src/data/split/075a1d44-e621-461f-b3ae-b454ef1ef34b_deepseekreasoner.json index 7d624f8..32ccccc 100644 --- a/server/src/data/split/075a1d44-e621-461f-b3ae-b454ef1ef34b_deepseekreasoner.json +++ b/server/src/data/split/075a1d44-e621-461f-b3ae-b454ef1ef34b_deepseekreasoner.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 40, + "githubStars": 39, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-01-29T07:16:04Z", diff --git a/server/src/data/split/078c5c1e-892f-46fd-8646-e9a884f36fc0_zig.json b/server/src/data/split/078c5c1e-892f-46fd-8646-e9a884f36fc0_zig.json index 741bc39..95c7a39 100644 --- a/server/src/data/split/078c5c1e-892f-46fd-8646-e9a884f36fc0_zig.json +++ b/server/src/data/split/078c5c1e-892f-46fd-8646-e9a884f36fc0_zig.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 12, + "githubStars": 11, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", "updatedAt": "2025-01-09T07:29:20Z", diff --git a/server/src/data/split/07eb49c7-9a55-4a00-b1a2-ba7fbef84fe6_devdb.json b/server/src/data/split/07eb49c7-9a55-4a00-b1a2-ba7fbef84fe6_devdb.json index e3ba5ff..e9f5573 100644 --- a/server/src/data/split/07eb49c7-9a55-4a00-b1a2-ba7fbef84fe6_devdb.json +++ b/server/src/data/split/07eb49c7-9a55-4a00-b1a2-ba7fbef84fe6_devdb.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 870, + "githubStars": 871, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T17:55:44Z", diff --git a/server/src/data/split/07fc60ed-12ed-41c5-90ea-9a4d0b1fa829_linear.json b/server/src/data/split/07fc60ed-12ed-41c5-90ea-9a4d0b1fa829_linear.json index 2cb4c8b..cd942aa 100644 --- a/server/src/data/split/07fc60ed-12ed-41c5-90ea-9a4d0b1fa829_linear.json +++ b/server/src/data/split/07fc60ed-12ed-41c5-90ea-9a4d0b1fa829_linear.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 60, + "githubStars": 63, "downloadCount": 0, "createdAt": "2025-03-24T02:03:10.166753+00:00", "updatedAt": "2025-04-02T11:25:52Z", diff --git a/server/src/data/split/08148a89-fbec-45bd-a137-12ff0b039a0e_notion.json b/server/src/data/split/08148a89-fbec-45bd-a137-12ff0b039a0e_notion.json index dedbd8a..96d6eba 100644 --- a/server/src/data/split/08148a89-fbec-45bd-a137-12ff0b039a0e_notion.json +++ b/server/src/data/split/08148a89-fbec-45bd-a137-12ff0b039a0e_notion.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 80, + "githubStars": 81, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-02-01T02:13:16Z", diff --git a/server/src/data/split/082d1c81-787d-4a55-abd4-8b6efbe26674_comfyui.json b/server/src/data/split/082d1c81-787d-4a55-abd4-8b6efbe26674_comfyui.json index 1c1f746..ee7d813 100644 --- a/server/src/data/split/082d1c81-787d-4a55-abd4-8b6efbe26674_comfyui.json +++ b/server/src/data/split/082d1c81-787d-4a55-abd4-8b6efbe26674_comfyui.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 46, + "githubStars": 47, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", "updatedAt": "2025-03-06T22:15:45Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "26d5fbc7acb53394c0cd3037b0387ea096bf251e", - "githubForks": 11, + "githubForks": 12, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/0948e941-3485-4192-9cff-cf951319ed38_evmmcpserver.json b/server/src/data/split/0948e941-3485-4192-9cff-cf951319ed38_evmmcpserver.json index 5906949..fbfd046 100644 --- a/server/src/data/split/0948e941-3485-4192-9cff-cf951319ed38_evmmcpserver.json +++ b/server/src/data/split/0948e941-3485-4192-9cff-cf951319ed38_evmmcpserver.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 212, + "githubStars": 214, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-22T20:17:47Z", diff --git a/server/src/data/split/0961d473-0426-469f-b997-6f7df47445ac_curl.json b/server/src/data/split/0961d473-0426-469f-b997-6f7df47445ac_curl.json index bcb2fba..bb25526 100644 --- a/server/src/data/split/0961d473-0426-469f-b997-6f7df47445ac_curl.json +++ b/server/src/data/split/0961d473-0426-469f-b997-6f7df47445ac_curl.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 40, + "githubStars": 41, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2024-12-05T07:13:54Z", diff --git a/server/src/data/split/09aa132a-51ce-4909-bb3b-a25f5724975f_demoeverything.json b/server/src/data/split/09aa132a-51ce-4909-bb3b-a25f5724975f_demoeverything.json index db61ec3..c4accba 100644 --- a/server/src/data/split/09aa132a-51ce-4909-bb3b-a25f5724975f_demoeverything.json +++ b/server/src/data/split/09aa132a-51ce-4909-bb3b-a25f5724975f_demoeverything.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/0cbc3d5f-ed0c-416f-b1ab-73ca0f7ed0ea_discord.json b/server/src/data/split/0cbc3d5f-ed0c-416f-b1ab-73ca0f7ed0ea_discord.json index 8844681..83209f7 100644 --- a/server/src/data/split/0cbc3d5f-ed0c-416f-b1ab-73ca0f7ed0ea_discord.json +++ b/server/src/data/split/0cbc3d5f-ed0c-416f-b1ab-73ca0f7ed0ea_discord.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 54, + "githubStars": 55, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-04-22T20:57:22Z", diff --git a/server/src/data/split/0dc6288f-b936-4199-8867-170fde6afdcb_neon.json b/server/src/data/split/0dc6288f-b936-4199-8867-170fde6afdcb_neon.json index 5a62883..34ae5ff 100644 --- a/server/src/data/split/0dc6288f-b936-4199-8867-170fde6afdcb_neon.json +++ b/server/src/data/split/0dc6288f-b936-4199-8867-170fde6afdcb_neon.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 194, + "githubStars": 195, "downloadCount": 0, "createdAt": "2025-03-14T09:14:31.36869+00:00", - "updatedAt": "2025-04-25T22:04:31Z", + "updatedAt": "2025-04-28T18:18:56Z", "hubId": "0dc6288f-b936-4199-8867-170fde6afdcb", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "8f48611093280840270495cedb233b0f51cd342b", - "githubForks": 34, + "githubLatestCommit": "2b2d00b6580852850aa55c6dc232ed47be0c34b0", + "githubForks": 35, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/0edc1242-84e9-4b5d-897e-fa3cebee6883_newreliclogs.json b/server/src/data/split/0edc1242-84e9-4b5d-897e-fa3cebee6883_newreliclogs.json index e8a4cbb..dbf2517 100644 --- a/server/src/data/split/0edc1242-84e9-4b5d-897e-fa3cebee6883_newreliclogs.json +++ b/server/src/data/split/0edc1242-84e9-4b5d-897e-fa3cebee6883_newreliclogs.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 8, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", "updatedAt": "2025-02-05T14:08:22Z", diff --git a/server/src/data/split/0f42e0a8-eebe-4d43-8ef4-0c507bfe56d0_opensourcedmcpserversdirectory.json b/server/src/data/split/0f42e0a8-eebe-4d43-8ef4-0c507bfe56d0_opensourcedmcpserversdirectory.json index 327d9e8..74d2bc0 100644 --- a/server/src/data/split/0f42e0a8-eebe-4d43-8ef4-0c507bfe56d0_opensourcedmcpserversdirectory.json +++ b/server/src/data/split/0f42e0a8-eebe-4d43-8ef4-0c507bfe56d0_opensourcedmcpserversdirectory.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1078, + "githubStars": 1081, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-26T16:29:01Z", diff --git a/server/src/data/split/0f547770-45bd-4bdc-a5ca-892386c8819d_googlecustomsearch.json b/server/src/data/split/0f547770-45bd-4bdc-a5ca-892386c8819d_googlecustomsearch.json index a820917..96564dd 100644 --- a/server/src/data/split/0f547770-45bd-4bdc-a5ca-892386c8819d_googlecustomsearch.json +++ b/server/src/data/split/0f547770-45bd-4bdc-a5ca-892386c8819d_googlecustomsearch.json @@ -19,12 +19,12 @@ "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-02-08T03:57:16Z", + "updatedAt": "2025-04-29T03:52:51Z", "hubId": "0f547770-45bd-4bdc-a5ca-892386c8819d", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "a2c9c20f3ad80a1ab70912bffd0d595af8610bc7", + "githubLatestCommit": "d17dfa8bb9e646129373a897b05799b59ba004c7", "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/0f5f10ae-1352-4db0-a91a-feb9f867c51b_ollama.json b/server/src/data/split/0f5f10ae-1352-4db0-a91a-feb9f867c51b_ollama.json index df7f951..e82b947 100644 --- a/server/src/data/split/0f5f10ae-1352-4db0-a91a-feb9f867c51b_ollama.json +++ b/server/src/data/split/0f5f10ae-1352-4db0-a91a-feb9f867c51b_ollama.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 44, + "githubStars": 45, "downloadCount": 2301, "createdAt": "2025-02-18T23:03:57.065833Z", "updatedAt": "2025-01-01T22:43:42Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "80cf2e17cfc144963a475b619093a2d13c13dbc9", - "githubForks": 8, + "githubForks": 9, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/123de7bf-ad6a-4793-a96a-63c612250c20_filesystem.json b/server/src/data/split/123de7bf-ad6a-4793-a96a-63c612250c20_filesystem.json index 763e06f..4d8d33a 100644 --- a/server/src/data/split/123de7bf-ad6a-4793-a96a-63c612250c20_filesystem.json +++ b/server/src/data/split/123de7bf-ad6a-4793-a96a-63c612250c20_filesystem.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/12d07347-1dcd-4cac-bb5d-de6c10e791df_orchestrator.json b/server/src/data/split/12d07347-1dcd-4cac-bb5d-de6c10e791df_orchestrator.json index ccbfbe5..5d6c878 100644 --- a/server/src/data/split/12d07347-1dcd-4cac-bb5d-de6c10e791df_orchestrator.json +++ b/server/src/data/split/12d07347-1dcd-4cac-bb5d-de6c10e791df_orchestrator.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 16, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-01-02T18:14:59Z", diff --git a/server/src/data/split/135e79c7-775e-40cb-b5c7-e176664d0717_mobilemcp.json b/server/src/data/split/135e79c7-775e-40cb-b5c7-e176664d0717_mobilemcp.json index b6ab45e..b7c6fef 100644 --- a/server/src/data/split/135e79c7-775e-40cb-b5c7-e176664d0717_mobilemcp.json +++ b/server/src/data/split/135e79c7-775e-40cb-b5c7-e176664d0717_mobilemcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 382, + "githubStars": 390, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-28T06:47:16Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "mobile-next", "githubLatestCommit": "87c03e6b35af1aa7fd82d404ad3e6bd95be1ee19", - "githubForks": 43, + "githubForks": 44, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/144dc768-6b22-41eb-8e90-4f7b9db336de_time.json b/server/src/data/split/144dc768-6b22-41eb-8e90-4f7b9db336de_time.json index 6635c69..ec2b1fe 100644 --- a/server/src/data/split/144dc768-6b22-41eb-8e90-4f7b9db336de_time.json +++ b/server/src/data/split/144dc768-6b22-41eb-8e90-4f7b9db336de_time.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 5739, "createdAt": "2025-02-18T05:45:35.164727Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/16258972-5b49-42c0-8f0c-abd3d6078fc2_mem0mcp.json b/server/src/data/split/16258972-5b49-42c0-8f0c-abd3d6078fc2_mem0mcp.json index 949bc62..0483bfa 100644 --- a/server/src/data/split/16258972-5b49-42c0-8f0c-abd3d6078fc2_mem0mcp.json +++ b/server/src/data/split/16258972-5b49-42c0-8f0c-abd3d6078fc2_mem0mcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 134, + "githubStars": 136, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-28T16:44:11Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "mem0ai", "githubLatestCommit": "eb8c436c27e6b6d14e4adee61132bb77c6f75498", - "githubForks": 19, + "githubForks": 18, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/16853241-8159-4ef8-81d9-e0ef233a4c1d_wanakumcprouter.json b/server/src/data/split/16853241-8159-4ef8-81d9-e0ef233a4c1d_wanakumcprouter.json index 3a47264..951fe5f 100644 --- a/server/src/data/split/16853241-8159-4ef8-81d9-e0ef233a4c1d_wanakumcprouter.json +++ b/server/src/data/split/16853241-8159-4ef8-81d9-e0ef233a4c1d_wanakumcprouter.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 62, + "githubStars": 63, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T13:25:54Z", diff --git a/server/src/data/split/16902f8a-8237-4e80-98ee-5f6446db3014_azure.json b/server/src/data/split/16902f8a-8237-4e80-98ee-5f6446db3014_azure.json index e87031b..138cd6d 100644 --- a/server/src/data/split/16902f8a-8237-4e80-98ee-5f6446db3014_azure.json +++ b/server/src/data/split/16902f8a-8237-4e80-98ee-5f6446db3014_azure.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 416, + "githubStars": 426, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-25T15:24:10Z", + "updatedAt": "2025-04-29T01:20:04Z", "hubId": "16902f8a-8237-4e80-98ee-5f6446db3014", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "Azure", - "githubLatestCommit": "d6d21accf87aa9980e217edd72a18c6d2286212d", - "githubForks": 69, + "githubLatestCommit": "ef7aac0f362eaabf3ff75d755a6527b739b309d0", + "githubForks": 72, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/16961c08-dc3c-4f91-9d22-c27dfff1f440_applescript.json b/server/src/data/split/16961c08-dc3c-4f91-9d22-c27dfff1f440_applescript.json index 40ae5e5..69e128d 100644 --- a/server/src/data/split/16961c08-dc3c-4f91-9d22-c27dfff1f440_applescript.json +++ b/server/src/data/split/16961c08-dc3c-4f91-9d22-c27dfff1f440_applescript.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 153, + "githubStars": 154, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-19T20:24:04Z", diff --git a/server/src/data/split/16ca27a9-8cb4-4081-a49a-678ce79e4c90_perplexity.json b/server/src/data/split/16ca27a9-8cb4-4081-a49a-678ce79e4c90_perplexity.json index 1f10c7e..abd00ef 100644 --- a/server/src/data/split/16ca27a9-8cb4-4081-a49a-678ce79e4c90_perplexity.json +++ b/server/src/data/split/16ca27a9-8cb4-4081-a49a-678ce79e4c90_perplexity.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 134, + "githubStars": 135, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-03-27T17:32:12Z", diff --git a/server/src/data/split/175012b9-a0ec-42e3-a957-a1636d0f968c_azuredevopsmcpserver.json b/server/src/data/split/175012b9-a0ec-42e3-a957-a1636d0f968c_azuredevopsmcpserver.json index 4bf351d..a57a44b 100644 --- a/server/src/data/split/175012b9-a0ec-42e3-a957-a1636d0f968c_azuredevopsmcpserver.json +++ b/server/src/data/split/175012b9-a0ec-42e3-a957-a1636d0f968c_azuredevopsmcpserver.json @@ -19,12 +19,12 @@ "githubStars": 102, "downloadCount": 0, "createdAt": "2025-04-24T09:03:43.090Z", - "updatedAt": "2025-04-26T16:55:52Z", + "updatedAt": "2025-04-28T13:16:26Z", "hubId": "175012b9-a0ec-42e3-a957-a1636d0f968c", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "5d33fc21527c3a13d3e5914b1d8a7dd5b04c8b27", + "githubLatestCommit": "fc8eff5318f8eb95e47976883fe87fa865c221f1", "githubForks": 27, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/17cca3aa-e07b-408e-a711-d323f76ef498_websearchtools.json b/server/src/data/split/17cca3aa-e07b-408e-a711-d323f76ef498_websearchtools.json index 81056e0..724c2e9 100644 --- a/server/src/data/split/17cca3aa-e07b-408e-a711-d323f76ef498_websearchtools.json +++ b/server/src/data/split/17cca3aa-e07b-408e-a711-d323f76ef498_websearchtools.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "6dcfac4dfe926bb713bdb8e5f69017b7986112d7", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/18a7b716-9542-4573-a6b4-dff2322e7090_clickhouse.json b/server/src/data/split/18a7b716-9542-4573-a6b4-dff2322e7090_clickhouse.json index c5a6b61..c1fa256 100644 --- a/server/src/data/split/18a7b716-9542-4573-a6b4-dff2322e7090_clickhouse.json +++ b/server/src/data/split/18a7b716-9542-4573-a6b4-dff2322e7090_clickhouse.json @@ -19,12 +19,12 @@ "githubStars": 225, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-04-17T01:43:30Z", + "updatedAt": "2025-04-28T23:07:14Z", "hubId": "18a7b716-9542-4573-a6b4-dff2322e7090", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "d42bc1d1b7b7fee527b89f6e74fe76e50c63045a", + "githubLatestCommit": "19b4e7d2c61637d12143dc0ee1749ecc4af4391c", "githubForks": 47, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/1935e19b-7429-4165-a1e9-428793ac0b49_github.json b/server/src/data/split/1935e19b-7429-4165-a1e9-428793ac0b49_github.json index 603057a..099437c 100644 --- a/server/src/data/split/1935e19b-7429-4165-a1e9-428793ac0b49_github.json +++ b/server/src/data/split/1935e19b-7429-4165-a1e9-428793ac0b49_github.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 18647, "createdAt": "2025-02-17T22:22:31.362545Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/1b32b6c6-f65e-4fbf-b009-fff707a566ee_github.json b/server/src/data/split/1b32b6c6-f65e-4fbf-b009-fff707a566ee_github.json index 60638df..78ba3b3 100644 --- a/server/src/data/split/1b32b6c6-f65e-4fbf-b009-fff707a566ee_github.json +++ b/server/src/data/split/1b32b6c6-f65e-4fbf-b009-fff707a566ee_github.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/1b6eb559-c1b2-47fa-a5dc-0eddf2c9379a_starrocks.json b/server/src/data/split/1b6eb559-c1b2-47fa-a5dc-0eddf2c9379a_starrocks.json index a026bdf..ca328ad 100644 --- a/server/src/data/split/1b6eb559-c1b2-47fa-a5dc-0eddf2c9379a_starrocks.json +++ b/server/src/data/split/1b6eb559-c1b2-47fa-a5dc-0eddf2c9379a_starrocks.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 19, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-26T13:30:11Z", + "updatedAt": "2025-04-28T14:36:26Z", "hubId": "1b6eb559-c1b2-47fa-a5dc-0eddf2c9379a", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "StarRocks", - "githubLatestCommit": "678361261678cf687aebd76bd4c01190694d4603", - "githubForks": 10, + "githubLatestCommit": "1db8433a94665a7d24c48ac39f473083bd37303d", + "githubForks": 12, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/1c46cbef-7fcc-4bba-9256-ab5a5c205e40_git.json b/server/src/data/split/1c46cbef-7fcc-4bba-9256-ab5a5c205e40_git.json index ec93fb0..f35de0f 100644 --- a/server/src/data/split/1c46cbef-7fcc-4bba-9256-ab5a5c205e40_git.json +++ b/server/src/data/split/1c46cbef-7fcc-4bba-9256-ab5a5c205e40_git.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41714, + "githubStars": 42021, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/1db790f5-ae1d-4621-87d6-eee8de32b9a1_slack.json b/server/src/data/split/1db790f5-ae1d-4621-87d6-eee8de32b9a1_slack.json index 09f2b1e..855b276 100644 --- a/server/src/data/split/1db790f5-ae1d-4621-87d6-eee8de32b9a1_slack.json +++ b/server/src/data/split/1db790f5-ae1d-4621-87d6-eee8de32b9a1_slack.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "92acd52df432afedbd061d9b3b3638ca4e678da7", - "githubForks": 2, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/1e19a87a-4872-4a14-ad58-2d75e3b2db1c_godocumentation.json b/server/src/data/split/1e19a87a-4872-4a14-ad58-2d75e3b2db1c_godocumentation.json index 38a1f7b..af05c9a 100644 --- a/server/src/data/split/1e19a87a-4872-4a14-ad58-2d75e3b2db1c_godocumentation.json +++ b/server/src/data/split/1e19a87a-4872-4a14-ad58-2d75e3b2db1c_godocumentation.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 46, + "githubStars": 47, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-01-16T22:13:50Z", diff --git a/server/src/data/split/1e6d6f51-61b2-4191-ba65-2d41060d4b0a_windsurftools.json b/server/src/data/split/1e6d6f51-61b2-4191-ba65-2d41060d4b0a_windsurftools.json index 0f468fe..3798b9c 100644 --- a/server/src/data/split/1e6d6f51-61b2-4191-ba65-2d41060d4b0a_windsurftools.json +++ b/server/src/data/split/1e6d6f51-61b2-4191-ba65-2d41060d4b0a_windsurftools.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 7, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", "updatedAt": "2025-03-06T07:06:15Z", diff --git a/server/src/data/split/1fcd16b4-4eeb-4130-8ad8-15f0cb87c996_polymarket.json b/server/src/data/split/1fcd16b4-4eeb-4130-8ad8-15f0cb87c996_polymarket.json index 1fa79ec..cbfa051 100644 --- a/server/src/data/split/1fcd16b4-4eeb-4130-8ad8-15f0cb87c996_polymarket.json +++ b/server/src/data/split/1fcd16b4-4eeb-4130-8ad8-15f0cb87c996_polymarket.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 14, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-02-05T01:56:18Z", diff --git a/server/src/data/split/20290c45-e3f2-47a7-a27a-0bcbdba06e3f_perplexity.json b/server/src/data/split/20290c45-e3f2-47a7-a27a-0bcbdba06e3f_perplexity.json index 41df961..7fdd6f1 100644 --- a/server/src/data/split/20290c45-e3f2-47a7-a27a-0bcbdba06e3f_perplexity.json +++ b/server/src/data/split/20290c45-e3f2-47a7-a27a-0bcbdba06e3f_perplexity.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1009, + "githubStars": 1018, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-27T21:32:41Z", diff --git a/server/src/data/split/2079006e-ffdf-4e23-9a5e-1e513882148e_zotero.json b/server/src/data/split/2079006e-ffdf-4e23-9a5e-1e513882148e_zotero.json index 467deea..3e4f302 100644 --- a/server/src/data/split/2079006e-ffdf-4e23-9a5e-1e513882148e_zotero.json +++ b/server/src/data/split/2079006e-ffdf-4e23-9a5e-1e513882148e_zotero.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a8b7116f3eb5b9e1a78848586cd0cceec5b2a719", - "githubForks": 8, + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/20fb060a-8f31-4ca3-b7de-f17f2d605db7_anki.json b/server/src/data/split/20fb060a-8f31-4ca3-b7de-f17f2d605db7_anki.json index 86517f9..1f97e54 100644 --- a/server/src/data/split/20fb060a-8f31-4ca3-b7de-f17f2d605db7_anki.json +++ b/server/src/data/split/20fb060a-8f31-4ca3-b7de-f17f2d605db7_anki.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "bed9c937392aef96a523c888fa3d8b4b3c900231", - "githubForks": 8, + "githubForks": 9, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/212cdec8-3f3e-4c84-b88a-1796d6fc557e_obsidian.json b/server/src/data/split/212cdec8-3f3e-4c84-b88a-1796d6fc557e_obsidian.json index a98421c..55edcd8 100644 --- a/server/src/data/split/212cdec8-3f3e-4c84-b88a-1796d6fc557e_obsidian.json +++ b/server/src/data/split/212cdec8-3f3e-4c84-b88a-1796d6fc557e_obsidian.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 260, + "githubStars": 261, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-01-19T15:49:17Z", diff --git a/server/src/data/split/2215e4a6-ad61-4b9d-b660-ac71668fe26b_llmstxtexplorer.json b/server/src/data/split/2215e4a6-ad61-4b9d-b660-ac71668fe26b_llmstxtexplorer.json index 1a33275..6fdcbb0 100644 --- a/server/src/data/split/2215e4a6-ad61-4b9d-b660-ac71668fe26b_llmstxtexplorer.json +++ b/server/src/data/split/2215e4a6-ad61-4b9d-b660-ac71668fe26b_llmstxtexplorer.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 35, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-18T12:38:29Z", + "updatedAt": "2025-04-28T14:44:08Z", "hubId": "2215e4a6-ad61-4b9d-b660-ac71668fe26b", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "8e97755ec5309cd8c41a2e4b50d17e7b9aaebf59", + "githubLatestCommit": "1c84cae804b80f8db43ee7fcb4c0a76d2a0c0721", "githubForks": 7, "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/22ef699f-4980-4e32-8538-2b7c036e2e43_codegen.json b/server/src/data/split/22ef699f-4980-4e32-8538-2b7c036e2e43_codegen.json index ba3b0a7..76da580 100644 --- a/server/src/data/split/22ef699f-4980-4e32-8538-2b7c036e2e43_codegen.json +++ b/server/src/data/split/22ef699f-4980-4e32-8538-2b7c036e2e43_codegen.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 441, + "githubStars": 442, "downloadCount": 1042, "createdAt": "2025-02-18T23:04:15.445062Z", "updatedAt": "2025-04-28T01:52:18Z", diff --git a/server/src/data/split/235a30f5-c2e0-4976-87bb-26fc09ae3732_clisecure.json b/server/src/data/split/235a30f5-c2e0-4976-87bb-26fc09ae3732_clisecure.json index a80a6fd..88cafa6 100644 --- a/server/src/data/split/235a30f5-c2e0-4976-87bb-26fc09ae3732_clisecure.json +++ b/server/src/data/split/235a30f5-c2e0-4976-87bb-26fc09ae3732_clisecure.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 74, + "githubStars": 75, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-21T21:39:35Z", diff --git a/server/src/data/split/23f5c653-2045-472f-8e51-f17c6fe632ec_fetchmozillareadability.json b/server/src/data/split/23f5c653-2045-472f-8e51-f17c6fe632ec_fetchmozillareadability.json index 3138bfa..e8c2ae0 100644 --- a/server/src/data/split/23f5c653-2045-472f-8e51-f17c6fe632ec_fetchmozillareadability.json +++ b/server/src/data/split/23f5c653-2045-472f-8e51-f17c6fe632ec_fetchmozillareadability.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4ac73d062339ffdd587393777d3d35bf9d800f4a", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/24a93944-2a51-4de4-acc9-71bf9d244e98_e2bts.json b/server/src/data/split/24a93944-2a51-4de4-acc9-71bf9d244e98_e2bts.json index 4549c08..3faeea1 100644 --- a/server/src/data/split/24a93944-2a51-4de4-acc9-71bf9d244e98_e2bts.json +++ b/server/src/data/split/24a93944-2a51-4de4-acc9-71bf9d244e98_e2bts.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 233, + "githubStars": 235, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-28T10:26:03Z", diff --git a/server/src/data/split/24d6e984-9b69-48b2-8a53-6c5c522e5641_neondatabase.json b/server/src/data/split/24d6e984-9b69-48b2-8a53-6c5c522e5641_neondatabase.json index 90b0a5f..dbe5b6f 100644 --- a/server/src/data/split/24d6e984-9b69-48b2-8a53-6c5c522e5641_neondatabase.json +++ b/server/src/data/split/24d6e984-9b69-48b2-8a53-6c5c522e5641_neondatabase.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 194, + "githubStars": 195, "downloadCount": 277, "createdAt": "2025-02-18T06:28:23.454334Z", - "updatedAt": "2025-04-25T22:04:31Z", + "updatedAt": "2025-04-28T18:18:56Z", "hubId": "24d6e984-9b69-48b2-8a53-6c5c522e5641", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "8f48611093280840270495cedb233b0f51cd342b", - "githubForks": 34, + "githubLatestCommit": "2b2d00b6580852850aa55c6dc232ed47be0c34b0", + "githubForks": 35, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/255953fe-82d0-4c02-a19d-ab8b135c3a6a_supabase.json b/server/src/data/split/255953fe-82d0-4c02-a19d-ab8b135c3a6a_supabase.json index a217340..a6c6edc 100644 --- a/server/src/data/split/255953fe-82d0-4c02-a19d-ab8b135c3a6a_supabase.json +++ b/server/src/data/split/255953fe-82d0-4c02-a19d-ab8b135c3a6a_supabase.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1297, + "githubStars": 1303, "downloadCount": 0, "createdAt": "2025-03-14T09:09:49.354801+00:00", "updatedAt": "2025-04-25T21:14:26Z", diff --git a/server/src/data/split/2587fde8-9e4d-4745-bfb8-488d83f69faf_kubernetes.json b/server/src/data/split/2587fde8-9e4d-4745-bfb8-488d83f69faf_kubernetes.json index 2955a95..481c783 100644 --- a/server/src/data/split/2587fde8-9e4d-4745-bfb8-488d83f69faf_kubernetes.json +++ b/server/src/data/split/2587fde8-9e4d-4745-bfb8-488d83f69faf_kubernetes.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 264, + "githubStars": 265, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-04-18T20:04:50Z", + "updatedAt": "2025-04-28T21:29:17Z", "hubId": "2587fde8-9e4d-4745-bfb8-488d83f69faf", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "6d3376d1c518c75a7ea72c39de24817f90244593", + "githubLatestCommit": "9ad8d4f9627d04b4651e680eb8f3ddbf0a37ed13", "githubForks": 33, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/25cc701d-11bf-46f5-a034-fa16e3eed234_motherduck.json b/server/src/data/split/25cc701d-11bf-46f5-a034-fa16e3eed234_motherduck.json index 38e7d98..e9b13c8 100644 --- a/server/src/data/split/25cc701d-11bf-46f5-a034-fa16e3eed234_motherduck.json +++ b/server/src/data/split/25cc701d-11bf-46f5-a034-fa16e3eed234_motherduck.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 120, + "githubStars": 123, "downloadCount": 97, "createdAt": "2025-02-18T06:08:00.70702Z", "updatedAt": "2025-04-14T17:24:52Z", diff --git a/server/src/data/split/261f5c5f-3adf-4add-a113-64822c6bf253_qdrant.json b/server/src/data/split/261f5c5f-3adf-4add-a113-64822c6bf253_qdrant.json index d803751..f033ff5 100644 --- a/server/src/data/split/261f5c5f-3adf-4add-a113-64822c6bf253_qdrant.json +++ b/server/src/data/split/261f5c5f-3adf-4add-a113-64822c6bf253_qdrant.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 503, + "githubStars": 505, "downloadCount": 435, "createdAt": "2025-02-18T05:47:07.82849Z", "updatedAt": "2025-04-11T15:58:49Z", diff --git a/server/src/data/split/2643d1a4-ef39-4c47-85ea-0b61823af29b_basefreeusdctransfer.json b/server/src/data/split/2643d1a4-ef39-4c47-85ea-0b61823af29b_basefreeusdctransfer.json index 6813f80..21e7585 100644 --- a/server/src/data/split/2643d1a4-ef39-4c47-85ea-0b61823af29b_basefreeusdctransfer.json +++ b/server/src/data/split/2643d1a4-ef39-4c47-85ea-0b61823af29b_basefreeusdctransfer.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "magnetai", "githubLatestCommit": "56a773dad543cc65f81c453fc6ff39e05d187442", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2660bdf4-5d32-4c38-9886-ffac5fa14a5c_slack.json b/server/src/data/split/2660bdf4-5d32-4c38-9886-ffac5fa14a5c_slack.json index ecb52c6..7551d81 100644 --- a/server/src/data/split/2660bdf4-5d32-4c38-9886-ffac5fa14a5c_slack.json +++ b/server/src/data/split/2660bdf4-5d32-4c38-9886-ffac5fa14a5c_slack.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41715, + "githubStars": 42021, "downloadCount": 730, "createdAt": "2025-02-17T22:23:00.036614Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4612, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2774f0f0-4114-449c-acde-528b05c8abf6_nasdaqdatalink.json b/server/src/data/split/2774f0f0-4114-449c-acde-528b05c8abf6_nasdaqdatalink.json index 9adc91d..71902d3 100644 --- a/server/src/data/split/2774f0f0-4114-449c-acde-528b05c8abf6_nasdaqdatalink.json +++ b/server/src/data/split/2774f0f0-4114-449c-acde-528b05c8abf6_nasdaqdatalink.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-26T14:21:50Z", diff --git a/server/src/data/split/280457a7-5a11-405c-a08a-32efd09d69c7_notionmcpserver.json b/server/src/data/split/280457a7-5a11-405c-a08a-32efd09d69c7_notionmcpserver.json index dffbec0..25e931d 100644 --- a/server/src/data/split/280457a7-5a11-405c-a08a-32efd09d69c7_notionmcpserver.json +++ b/server/src/data/split/280457a7-5a11-405c-a08a-32efd09d69c7_notionmcpserver.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1463, + "githubStars": 1479, "downloadCount": 0, "createdAt": "2025-04-24T09:11:37.142Z", - "updatedAt": "2025-04-16T16:36:01Z", + "updatedAt": "2025-04-28T14:43:03Z", "hubId": "280457a7-5a11-405c-a08a-32efd09d69c7", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "5771f71ddbe932e2eb4f37d7fd8700a55d51b6d0", + "githubLatestCommit": "bab1f7a426ec4cf41f8c375d3add72543530acd7", "githubForks": 80, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2848c0f7-8321-4e8c-aea8-f4263cd24f45_heuristmeshagent.json b/server/src/data/split/2848c0f7-8321-4e8c-aea8-f4263cd24f45_heuristmeshagent.json index d2fe690..e9bc461 100644 --- a/server/src/data/split/2848c0f7-8321-4e8c-aea8-f4263cd24f45_heuristmeshagent.json +++ b/server/src/data/split/2848c0f7-8321-4e8c-aea8-f4263cd24f45_heuristmeshagent.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 499, + "githubStars": 501, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T09:40:54Z", diff --git a/server/src/data/split/28607b4e-49d7-43f7-89d1-61a2e0a3daea_awscostexplorer.json b/server/src/data/split/28607b4e-49d7-43f7-89d1-61a2e0a3daea_awscostexplorer.json index dcb5e4b..ca6d152 100644 --- a/server/src/data/split/28607b4e-49d7-43f7-89d1-61a2e0a3daea_awscostexplorer.json +++ b/server/src/data/split/28607b4e-49d7-43f7-89d1-61a2e0a3daea_awscostexplorer.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 86, + "githubStars": 87, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-14T02:39:46Z", diff --git a/server/src/data/split/286c4e8f-8e89-4b08-85c1-e685a93b0e49_obsidian.json b/server/src/data/split/286c4e8f-8e89-4b08-85c1-e685a93b0e49_obsidian.json index 79e9bb8..4b15631 100644 --- a/server/src/data/split/286c4e8f-8e89-4b08-85c1-e685a93b0e49_obsidian.json +++ b/server/src/data/split/286c4e8f-8e89-4b08-85c1-e685a93b0e49_obsidian.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 735, + "githubStars": 744, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-14T11:24:19Z", diff --git a/server/src/data/split/28ec4e66-3c1b-4e37-b1fa-6daaea6ca0d3_gitlab.json b/server/src/data/split/28ec4e66-3c1b-4e37-b1fa-6daaea6ca0d3_gitlab.json index 72dd4eb..9995be8 100644 --- a/server/src/data/split/28ec4e66-3c1b-4e37-b1fa-6daaea6ca0d3_gitlab.json +++ b/server/src/data/split/28ec4e66-3c1b-4e37-b1fa-6daaea6ca0d3_gitlab.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 68, + "githubStars": 70, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-24T15:11:34Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "95d8118ea542c4885c884e2d9a66e43d2ee1b920", - "githubForks": 27, + "githubForks": 28, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/290de9a9-74fa-4633-880d-14af3c23a4b9_awesomemcpserversbyappcypher.json b/server/src/data/split/290de9a9-74fa-4633-880d-14af3c23a4b9_awesomemcpserversbyappcypher.json index 203cbf2..e530693 100644 --- a/server/src/data/split/290de9a9-74fa-4633-880d-14af3c23a4b9_awesomemcpserversbyappcypher.json +++ b/server/src/data/split/290de9a9-74fa-4633-880d-14af3c23a4b9_awesomemcpserversbyappcypher.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2838, + "githubStars": 2854, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-16T22:17:50Z", diff --git a/server/src/data/split/293ccc88-a443-4b50-ba13-a84e1f750bb1_sketch.json b/server/src/data/split/293ccc88-a443-4b50-ba13-a84e1f750bb1_sketch.json index c96e5a1..7e1d319 100644 --- a/server/src/data/split/293ccc88-a443-4b50-ba13-a84e1f750bb1_sketch.json +++ b/server/src/data/split/293ccc88-a443-4b50-ba13-a84e1f750bb1_sketch.json @@ -19,12 +19,12 @@ "githubStars": 29, "downloadCount": 0, "createdAt": "2025-03-14T18:48:35.110965+00:00", - "updatedAt": "2025-03-14T19:16:38Z", + "updatedAt": "2025-04-28T16:30:05Z", "hubId": "293ccc88-a443-4b50-ba13-a84e1f750bb1", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "1924025b42468bc5e9b696d49d011ce91efdbf02", + "githubLatestCommit": "04f09e6cb50e444421894dfc6bbb54827e3aac77", "githubForks": 4, - "licenseType": null + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/293e3d53-d38e-40e1-bd51-9fc769de5f5f_giphy.json b/server/src/data/split/293e3d53-d38e-40e1-bd51-9fc769de5f5f_giphy.json index f2a5244..a4035ce 100644 --- a/server/src/data/split/293e3d53-d38e-40e1-bd51-9fc769de5f5f_giphy.json +++ b/server/src/data/split/293e3d53-d38e-40e1-bd51-9fc769de5f5f_giphy.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 263, + "githubStars": 264, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-04-25T23:00:18Z", + "updatedAt": "2025-04-29T00:47:17Z", "hubId": "293e3d53-d38e-40e1-bd51-9fc769de5f5f", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "708adf0cd7b2454bae3c112057dfe09b80dea17c", + "githubLatestCommit": "7ee60c8e6529c03fda76bef36fe78452bb9a575e", "githubForks": 69, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2953ec98-685e-4eea-8f6d-9f62785a24a2_coinmarketcap.json b/server/src/data/split/2953ec98-685e-4eea-8f6d-9f62785a24a2_coinmarketcap.json index c2d58b5..1f2579c 100644 --- a/server/src/data/split/2953ec98-685e-4eea-8f6d-9f62785a24a2_coinmarketcap.json +++ b/server/src/data/split/2953ec98-685e-4eea-8f6d-9f62785a24a2_coinmarketcap.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-03T21:27:32Z", diff --git a/server/src/data/split/29b37a63-4b99-414f-9a5f-81ef5b18f0d3_sequentialthinkingtools.json b/server/src/data/split/29b37a63-4b99-414f-9a5f-81ef5b18f0d3_sequentialthinkingtools.json index a7fd7a9..de8ea65 100644 --- a/server/src/data/split/29b37a63-4b99-414f-9a5f-81ef5b18f0d3_sequentialthinkingtools.json +++ b/server/src/data/split/29b37a63-4b99-414f-9a5f-81ef5b18f0d3_sequentialthinkingtools.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 105, + "githubStars": 107, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-04-14T14:44:37Z", + "updatedAt": "2025-04-28T21:04:55Z", "hubId": "29b37a63-4b99-414f-9a5f-81ef5b18f0d3", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "77d3d63a6c3b814b2e17016e59bccf6be9f45874", + "githubLatestCommit": "a68ac1e74f13dd2c06a99c5f2450bfa4b6c2c0ea", "githubForks": 28, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/29d4cd10-ad18-4109-b416-494a09cb1db9_clicomputercommander.json b/server/src/data/split/29d4cd10-ad18-4109-b416-494a09cb1db9_clicomputercommander.json index 3c53c7e..e18e88c 100644 --- a/server/src/data/split/29d4cd10-ad18-4109-b416-494a09cb1db9_clicomputercommander.json +++ b/server/src/data/split/29d4cd10-ad18-4109-b416-494a09cb1db9_clicomputercommander.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2055, + "githubStars": 2069, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-26T22:48:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "58e09ac7ae035faa7a943acf6b7af7a24ef8fcaa", - "githubForks": 212, + "githubForks": 217, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2a47782d-deb5-46f8-a606-b6ebaac6b707_neo4j.json b/server/src/data/split/2a47782d-deb5-46f8-a606-b6ebaac6b707_neo4j.json index 8b19f49..f7a67ca 100644 --- a/server/src/data/split/2a47782d-deb5-46f8-a606-b6ebaac6b707_neo4j.json +++ b/server/src/data/split/2a47782d-deb5-46f8-a606-b6ebaac6b707_neo4j.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 261, + "githubStars": 262, "downloadCount": 509, "createdAt": "2025-02-18T06:28:19.461292Z", "updatedAt": "2025-04-21T15:33:02Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "611eeb52cd0242073278d28cbd523acc5528011c", - "githubForks": 69, + "githubForks": 70, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2b37596b-0bf2-4256-871b-dd016d9aabdf_babashka.json b/server/src/data/split/2b37596b-0bf2-4256-871b-dd016d9aabdf_babashka.json index 57ec7cd..2b6125b 100644 --- a/server/src/data/split/2b37596b-0bf2-4256-871b-dd016d9aabdf_babashka.json +++ b/server/src/data/split/2b37596b-0bf2-4256-871b-dd016d9aabdf_babashka.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "51abaf27183cd1b6c7940c02d6717a5faf64f865", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2b38f727-8857-4518-ba48-7bb5c3b42f69_claudechatgpt.json b/server/src/data/split/2b38f727-8857-4518-ba48-7bb5c3b42f69_claudechatgpt.json index 80fca44..9cd43a3 100644 --- a/server/src/data/split/2b38f727-8857-4518-ba48-7bb5c3b42f69_claudechatgpt.json +++ b/server/src/data/split/2b38f727-8857-4518-ba48-7bb5c3b42f69_claudechatgpt.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 637, + "githubStars": 639, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", "updatedAt": "2025-02-27T12:37:01Z", diff --git a/server/src/data/split/2c73225a-dec5-4f5f-965d-40aa4165dfa9_stripe.json b/server/src/data/split/2c73225a-dec5-4f5f-965d-40aa4165dfa9_stripe.json index 0290377..a9e4d7f 100644 --- a/server/src/data/split/2c73225a-dec5-4f5f-965d-40aa4165dfa9_stripe.json +++ b/server/src/data/split/2c73225a-dec5-4f5f-965d-40aa4165dfa9_stripe.json @@ -13,15 +13,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 675, + "githubStars": 677, "downloadCount": 0, "createdAt": "2025-03-15T07:50:26.498329+00:00", - "updatedAt": "2025-04-14T16:19:46Z", + "updatedAt": "2025-04-28T19:33:37Z", "hubId": "2c73225a-dec5-4f5f-965d-40aa4165dfa9", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "30ba4a4e107409feac0ee9e2b78c1307514de6ed", + "githubLatestCommit": "aa4964fea195a4b0f85aa0c689a303e724f2465f", "githubForks": 86, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2c780fd0-acb2-45a2-95be-1a41b3dea173_repomix.json b/server/src/data/split/2c780fd0-acb2-45a2-95be-1a41b3dea173_repomix.json index 17253aa..8182685 100644 --- a/server/src/data/split/2c780fd0-acb2-45a2-95be-1a41b3dea173_repomix.json +++ b/server/src/data/split/2c780fd0-acb2-45a2-95be-1a41b3dea173_repomix.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 15197, + "githubStars": 15229, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T11:49:25Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f54c4ea87497ae6c709324566fe89dd0cb45fc53", - "githubForks": 656, + "githubForks": 657, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2ca9af76-7117-4345-b56b-1c93d3971765_kintone.json b/server/src/data/split/2ca9af76-7117-4345-b56b-1c93d3971765_kintone.json index 42df7f4..cf41d30 100644 --- a/server/src/data/split/2ca9af76-7117-4345-b56b-1c93d3971765_kintone.json +++ b/server/src/data/split/2ca9af76-7117-4345-b56b-1c93d3971765_kintone.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c3be69f090460d54bf3c59bfc148624ae89cb3af", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2cb2c619-090e-473c-9249-88dc31a4304c_obsidiantools.json b/server/src/data/split/2cb2c619-090e-473c-9249-88dc31a4304c_obsidiantools.json index b9e50a2..68940fe 100644 --- a/server/src/data/split/2cb2c619-090e-473c-9249-88dc31a4304c_obsidiantools.json +++ b/server/src/data/split/2cb2c619-090e-473c-9249-88dc31a4304c_obsidiantools.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 114, + "githubStars": 117, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-23T23:05:59Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a167072f4a000a40469d99acadeb3982578d7eab", - "githubForks": 13, + "githubForks": 14, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2cb8cc5f-01f4-412b-99ff-6a2bab0aa683_imagegeneration.json b/server/src/data/split/2cb8cc5f-01f4-412b-99ff-6a2bab0aa683_imagegeneration.json index e752444..a2645eb 100644 --- a/server/src/data/split/2cb8cc5f-01f4-412b-99ff-6a2bab0aa683_imagegeneration.json +++ b/server/src/data/split/2cb8cc5f-01f4-412b-99ff-6a2bab0aa683_imagegeneration.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "GongRzhe", "githubLatestCommit": "04a13ba35d6a7aa84e282aad3cce66a139cb5e4e", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2cc419f8-7946-4265-8e08-eefee0fb40ee_edubase.json b/server/src/data/split/2cc419f8-7946-4265-8e08-eefee0fb40ee_edubase.json index c7a8369..d010424 100644 --- a/server/src/data/split/2cc419f8-7946-4265-8e08-eefee0fb40ee_edubase.json +++ b/server/src/data/split/2cc419f8-7946-4265-8e08-eefee0fb40ee_edubase.json @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "EduBase", "githubLatestCommit": "7ecafcc514264d6a35cf71cad4a31f64043e104c", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2cccbd1a-4fd5-48d4-9b02-fd3a11a626bb_scrapbox.json b/server/src/data/split/2cccbd1a-4fd5-48d4-9b02-fd3a11a626bb_scrapbox.json index 07b8de6..341e12c 100644 --- a/server/src/data/split/2cccbd1a-4fd5-48d4-9b02-fd3a11a626bb_scrapbox.json +++ b/server/src/data/split/2cccbd1a-4fd5-48d4-9b02-fd3a11a626bb_scrapbox.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "2dca1538063799bc8fb023adac8808a98a594050", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2cdb12ec-f825-4b2c-b49f-0fa48db3c68a_emailvalidator.json b/server/src/data/split/2cdb12ec-f825-4b2c-b49f-0fa48db3c68a_emailvalidator.json index af75dd2..1882625 100644 --- a/server/src/data/split/2cdb12ec-f825-4b2c-b49f-0fa48db3c68a_emailvalidator.json +++ b/server/src/data/split/2cdb12ec-f825-4b2c-b49f-0fa48db3c68a_emailvalidator.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ee7355fdb64a69bf48ab38204373d4b683a970ef", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2d30f543-853f-498b-b1be-bc69f877b941_riza.json b/server/src/data/split/2d30f543-853f-498b-b1be-bc69f877b941_riza.json index f91e88d..a5902ed 100644 --- a/server/src/data/split/2d30f543-853f-498b-b1be-bc69f877b941_riza.json +++ b/server/src/data/split/2d30f543-853f-498b-b1be-bc69f877b941_riza.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "04858b8dcf9ba34ca59476a90d3f16b410d65003", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2d5f4bc4-2277-4b8f-8b55-d633eb69650a_ensdaooperations.json b/server/src/data/split/2d5f4bc4-2277-4b8f-8b55-d633eb69650a_ensdaooperations.json index ff75885..c230040 100644 --- a/server/src/data/split/2d5f4bc4-2277-4b8f-8b55-d633eb69650a_ensdaooperations.json +++ b/server/src/data/split/2d5f4bc4-2277-4b8f-8b55-d633eb69650a_ensdaooperations.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ad8c9c442b3c937771ab733bac8acbb1c4dc9fd5", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2d797d93-c78d-4e8e-b3cd-d7e5869d1de9_pdfextraction.json b/server/src/data/split/2d797d93-c78d-4e8e-b3cd-d7e5869d1de9_pdfextraction.json index a1c6a96..f613444 100644 --- a/server/src/data/split/2d797d93-c78d-4e8e-b3cd-d7e5869d1de9_pdfextraction.json +++ b/server/src/data/split/2d797d93-c78d-4e8e-b3cd-d7e5869d1de9_pdfextraction.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ff749daa7c9167d0d5f79cd4fd31a396817bacaa", - "githubForks": 4, + "githubForks": 5, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2d9a366c-0e49-469a-a865-51764e15d591_ollama.json b/server/src/data/split/2d9a366c-0e49-469a-a865-51764e15d591_ollama.json index 433185c..d35666c 100644 --- a/server/src/data/split/2d9a366c-0e49-469a-a865-51764e15d591_ollama.json +++ b/server/src/data/split/2d9a366c-0e49-469a-a865-51764e15d591_ollama.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 20, + "githubStars": 21, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-02-05T02:41:38Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d61d39f45d06f5ecdc48350cda7b82ce439fc73a", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2dbc840a-b937-4fd8-a449-93a2058296a7_codeanalysis.json b/server/src/data/split/2dbc840a-b937-4fd8-a449-93a2058296a7_codeanalysis.json index d61ba81..3c05a32 100644 --- a/server/src/data/split/2dbc840a-b937-4fd8-a449-93a2058296a7_codeanalysis.json +++ b/server/src/data/split/2dbc840a-b937-4fd8-a449-93a2058296a7_codeanalysis.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e0f047b71d4c8a5091a98b39675bdf1b90e72d33", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2dce6f4c-66fc-485d-aa86-62fee8b60125_alphavantage.json b/server/src/data/split/2dce6f4c-66fc-485d-aa86-62fee8b60125_alphavantage.json index 78ea18c..ec6ef34 100644 --- a/server/src/data/split/2dce6f4c-66fc-485d-aa86-62fee8b60125_alphavantage.json +++ b/server/src/data/split/2dce6f4c-66fc-485d-aa86-62fee8b60125_alphavantage.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c1b964b7ccba12f4595c8e8cab10ed2d53d46011", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2e825328-a257-4a34-b4a3-995ff2759870_gittools.json b/server/src/data/split/2e825328-a257-4a34-b4a3-995ff2759870_gittools.json index a9e0072..e303ab4 100644 --- a/server/src/data/split/2e825328-a257-4a34-b4a3-995ff2759870_gittools.json +++ b/server/src/data/split/2e825328-a257-4a34-b4a3-995ff2759870_gittools.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "bb9dca05f67b1cbeac273331e93e4015135ed99c", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2e87a7e9-7e63-4e46-831e-8b541e9ed8d5_tmdbmoviedata.json b/server/src/data/split/2e87a7e9-7e63-4e46-831e-8b541e9ed8d5_tmdbmoviedata.json index 6a695de..c6e53d1 100644 --- a/server/src/data/split/2e87a7e9-7e63-4e46-831e-8b541e9ed8d5_tmdbmoviedata.json +++ b/server/src/data/split/2e87a7e9-7e63-4e46-831e-8b541e9ed8d5_tmdbmoviedata.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a9fb0fa40726c1d1c646f2ac48ea8d5978af81e2", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2ed4b38a-efa6-49c7-8be0-bcd8f63f8aed_linear.json b/server/src/data/split/2ed4b38a-efa6-49c7-8be0-bcd8f63f8aed_linear.json index 738a0a3..24606a2 100644 --- a/server/src/data/split/2ed4b38a-efa6-49c7-8be0-bcd8f63f8aed_linear.json +++ b/server/src/data/split/2ed4b38a-efa6-49c7-8be0-bcd8f63f8aed_linear.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4b94fea2dcf92e0f3215edac245f5144bc593f6a", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2eebf6ac-0f93-4be3-86db-f695a772a3fc_magickconvertimagemagick.json b/server/src/data/split/2eebf6ac-0f93-4be3-86db-f695a772a3fc_magickconvertimagemagick.json index 9413172..5448a7a 100644 --- a/server/src/data/split/2eebf6ac-0f93-4be3-86db-f695a772a3fc_magickconvertimagemagick.json +++ b/server/src/data/split/2eebf6ac-0f93-4be3-86db-f695a772a3fc_magickconvertimagemagick.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d8caa818a1415e1d7d847d5cecdebf28ccdee813", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2f20aaa7-590a-46dd-b340-094bbb58a0f5_bitcoin.json b/server/src/data/split/2f20aaa7-590a-46dd-b340-094bbb58a0f5_bitcoin.json index b2514ab..94ee1dc 100644 --- a/server/src/data/split/2f20aaa7-590a-46dd-b340-094bbb58a0f5_bitcoin.json +++ b/server/src/data/split/2f20aaa7-590a-46dd-b340-094bbb58a0f5_bitcoin.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 35, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2025-03-31T12:32:12Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c7bd29c13f214037226927b0f71fa62fad52813c", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f2a0019-168c-4682-a7ae-93c08c6fa177_htmlpagepreview.json b/server/src/data/split/2f2a0019-168c-4682-a7ae-93c08c6fa177_htmlpagepreview.json index 07c1956..d96456d 100644 --- a/server/src/data/split/2f2a0019-168c-4682-a7ae-93c08c6fa177_htmlpagepreview.json +++ b/server/src/data/split/2f2a0019-168c-4682-a7ae-93c08c6fa177_htmlpagepreview.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4b85b05480f02ef2cd107442dac014d423e4d8b4", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f2de962-4006-459c-96c9-1f67e38d638d_openrouter.json b/server/src/data/split/2f2de962-4006-459c-96c9-1f67e38d638d_openrouter.json index 58df41b..3472d16 100644 --- a/server/src/data/split/2f2de962-4006-459c-96c9-1f67e38d638d_openrouter.json +++ b/server/src/data/split/2f2de962-4006-459c-96c9-1f67e38d638d_openrouter.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "25609f8e94c971937230e55017923dc0628ebf19", - "githubForks": 7, + "githubForks": 8, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/2f3e92c5-1fc5-45c6-895c-adf868ac091c_rquest.json b/server/src/data/split/2f3e92c5-1fc5-45c6-895c-adf868ac091c_rquest.json index df5fe90..c9f4181 100644 --- a/server/src/data/split/2f3e92c5-1fc5-45c6-895c-adf868ac091c_rquest.json +++ b/server/src/data/split/2f3e92c5-1fc5-45c6-895c-adf868ac091c_rquest.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "xxxbrian", "githubLatestCommit": "f7b86daf21f66088c16edbf8a9183307e43b72cf", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f5b9836-8ab0-44ca-9dd9-86d7a802d643_devdocs.json b/server/src/data/split/2f5b9836-8ab0-44ca-9dd9-86d7a802d643_devdocs.json index 8de51bf..2bf972a 100644 --- a/server/src/data/split/2f5b9836-8ab0-44ca-9dd9-86d7a802d643_devdocs.json +++ b/server/src/data/split/2f5b9836-8ab0-44ca-9dd9-86d7a802d643_devdocs.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8af0fcb732d16bbe10c07887f4bcd57a4ab132fb", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f632ef3-0fc0-4d2d-afea-924c83495e57_telegramclient.json b/server/src/data/split/2f632ef3-0fc0-4d2d-afea-924c83495e57_telegramclient.json index 8c5c377..db64ce5 100644 --- a/server/src/data/split/2f632ef3-0fc0-4d2d-afea-924c83495e57_telegramclient.json +++ b/server/src/data/split/2f632ef3-0fc0-4d2d-afea-924c83495e57_telegramclient.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 35, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-17T21:44:42Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "chaindead", "githubLatestCommit": "911e761430a0758ed04f0c1f2611cf301956a49c", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f752a76-e7c0-4057-b20a-f78ba6caca6e_langflowdocqaserver.json b/server/src/data/split/2f752a76-e7c0-4057-b20a-f78ba6caca6e_langflowdocqaserver.json index 74fb356..5fc9014 100644 --- a/server/src/data/split/2f752a76-e7c0-4057-b20a-f78ba6caca6e_langflowdocqaserver.json +++ b/server/src/data/split/2f752a76-e7c0-4057-b20a-f78ba6caca6e_langflowdocqaserver.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "GongRzhe", "githubLatestCommit": "b39b672d881feb54663b4cae33bc604ebeb91be3", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/2f96bdae-5002-4f95-a79b-4f43a47f49d7_localdev.json b/server/src/data/split/2f96bdae-5002-4f95-a79b-4f43a47f49d7_localdev.json index 305fa2d..f9a8d9d 100644 --- a/server/src/data/split/2f96bdae-5002-4f95-a79b-4f43a47f49d7_localdev.json +++ b/server/src/data/split/2f96bdae-5002-4f95-a79b-4f43a47f49d7_localdev.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4e38ffab593ec52b5056659925dd37a44392ba06", - "githubForks": 6, + "githubForks": 7, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/2fddf4ba-e4e4-40c8-ab20-1a76d94ac88a_pdftopng.json b/server/src/data/split/2fddf4ba-e4e4-40c8-ab20-1a76d94ac88a_pdftopng.json index 5d7dd97..97d3a18 100644 --- a/server/src/data/split/2fddf4ba-e4e4-40c8-ab20-1a76d94ac88a_pdftopng.json +++ b/server/src/data/split/2fddf4ba-e4e4-40c8-ab20-1a76d94ac88a_pdftopng.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f1902c218ea67e9749b78969716c1e036d8ef60c", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3003194a-d597-4016-9b21-d8c871a5e8f5_bicscan.json b/server/src/data/split/3003194a-d597-4016-9b21-d8c871a5e8f5_bicscan.json index 2e89d6b..6b6e0c5 100644 --- a/server/src/data/split/3003194a-d597-4016-9b21-d8c871a5e8f5_bicscan.json +++ b/server/src/data/split/3003194a-d597-4016-9b21-d8c871a5e8f5_bicscan.json @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "ahnlabio", "githubLatestCommit": "072c48ec4fed9069be88668c85fba871b29bc635", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/30507b5d-25c7-4bc4-9450-6eedd493cf3b_xcodebuild.json b/server/src/data/split/30507b5d-25c7-4bc4-9450-6eedd493cf3b_xcodebuild.json index 81768f7..02af768 100644 --- a/server/src/data/split/30507b5d-25c7-4bc4-9450-6eedd493cf3b_xcodebuild.json +++ b/server/src/data/split/30507b5d-25c7-4bc4-9450-6eedd493cf3b_xcodebuild.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 49, + "githubStars": 51, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-13T05:44:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c7b46a967847774baa4af92c1d393e792dbb32fb", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/306b4cb5-8bd6-4523-93ce-e383b14f4c3e_soccerdataapi.json b/server/src/data/split/306b4cb5-8bd6-4523-93ce-e383b14f4c3e_soccerdataapi.json index dc80ea9..dd9a534 100644 --- a/server/src/data/split/306b4cb5-8bd6-4523-93ce-e383b14f4c3e_soccerdataapi.json +++ b/server/src/data/split/306b4cb5-8bd6-4523-93ce-e383b14f4c3e_soccerdataapi.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "yeonupark", "githubLatestCommit": "6803a62255013934dcc92d74e29eed7391bfca1c", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/30864ae4-2b9c-4256-8a8d-6dd1e42d79ab_deltatask.json b/server/src/data/split/30864ae4-2b9c-4256-8a8d-6dd1e42d79ab_deltatask.json index 9fd6697..760a03b 100644 --- a/server/src/data/split/30864ae4-2b9c-4256-8a8d-6dd1e42d79ab_deltatask.json +++ b/server/src/data/split/30864ae4-2b9c-4256-8a8d-6dd1e42d79ab_deltatask.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "68753c08cf34bfbc50d21e97827a2aa260b2ca47", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3091ba65-9d6a-4d8f-92b8-5bd01b66b388_comfystablediffusion.json b/server/src/data/split/3091ba65-9d6a-4d8f-92b8-5bd01b66b388_comfystablediffusion.json index 24df82f..81bea87 100644 --- a/server/src/data/split/3091ba65-9d6a-4d8f-92b8-5bd01b66b388_comfystablediffusion.json +++ b/server/src/data/split/3091ba65-9d6a-4d8f-92b8-5bd01b66b388_comfystablediffusion.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8803d7afb6a2266fad23245ed2b463a70c757708", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/30e9713e-35d1-478f-b276-98a670c15558_raindropio.json b/server/src/data/split/30e9713e-35d1-478f-b276-98a670c15558_raindropio.json index cdfb765..4f0a90a 100644 --- a/server/src/data/split/30e9713e-35d1-478f-b276-98a670c15558_raindropio.json +++ b/server/src/data/split/30e9713e-35d1-478f-b276-98a670c15558_raindropio.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "1a817d7b4c27c788ffc52f8758ce152f0ee27a92", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3119a1f9-0b4a-4278-b5e3-8c392e072c7e_minizinccomplexlogicsolver.json b/server/src/data/split/3119a1f9-0b4a-4278-b5e3-8c392e072c7e_minizinccomplexlogicsolver.json index 1fa924e..a679610 100644 --- a/server/src/data/split/3119a1f9-0b4a-4278-b5e3-8c392e072c7e_minizinccomplexlogicsolver.json +++ b/server/src/data/split/3119a1f9-0b4a-4278-b5e3-8c392e072c7e_minizinccomplexlogicsolver.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "3ff65e5b7c574a60ffe876410e0be0c4a7cfc2c6", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/317cb731-6556-4fae-bc53-3fcb32cc438e_serpersearch.json b/server/src/data/split/317cb731-6556-4fae-bc53-3fcb32cc438e_serpersearch.json index 461381f..4a6e200 100644 --- a/server/src/data/split/317cb731-6556-4fae-bc53-3fcb32cc438e_serpersearch.json +++ b/server/src/data/split/317cb731-6556-4fae-bc53-3fcb32cc438e_serpersearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "21b83f56f4565e0854becce0377a23ac831e6948", - "githubForks": 11, + "githubForks": 12, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/31c327f4-22ef-4cf2-b6fd-0bc602e26a19_codingprojectstructure.json b/server/src/data/split/31c327f4-22ef-4cf2-b6fd-0bc602e26a19_codingprojectstructure.json index 939b49a..7911660 100644 --- a/server/src/data/split/31c327f4-22ef-4cf2-b6fd-0bc602e26a19_codingprojectstructure.json +++ b/server/src/data/split/31c327f4-22ef-4cf2-b6fd-0bc602e26a19_codingprojectstructure.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "35fa1b6a2f2dfad677150eeecc0f5594840bb253", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/31f98300-a9b7-4b97-91d1-e042fbf780c3_confluence.json b/server/src/data/split/31f98300-a9b7-4b97-91d1-e042fbf780c3_confluence.json index 1783a63..757acef 100644 --- a/server/src/data/split/31f98300-a9b7-4b97-91d1-e042fbf780c3_confluence.json +++ b/server/src/data/split/31f98300-a9b7-4b97-91d1-e042fbf780c3_confluence.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d540e1cbe61a023a0005a4a4b1bdc4e8d85d1055", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3214d39d-df6c-4962-b77e-0f7535168a8a_microsoftword.json b/server/src/data/split/3214d39d-df6c-4962-b77e-0f7535168a8a_microsoftword.json index 8b928cb..e75c3f4 100644 --- a/server/src/data/split/3214d39d-df6c-4962-b77e-0f7535168a8a_microsoftword.json +++ b/server/src/data/split/3214d39d-df6c-4962-b77e-0f7535168a8a_microsoftword.json @@ -15,15 +15,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 263, + "githubStars": 264, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-04-25T23:00:18Z", + "updatedAt": "2025-04-29T00:47:17Z", "hubId": "3214d39d-df6c-4962-b77e-0f7535168a8a", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "708adf0cd7b2454bae3c112057dfe09b80dea17c", + "githubLatestCommit": "7ee60c8e6529c03fda76bef36fe78452bb9a575e", "githubForks": 69, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3230f7e4-e084-4b58-89d3-61d5ecffc917_devenvinfoserver.json b/server/src/data/split/3230f7e4-e084-4b58-89d3-61d5ecffc917_devenvinfoserver.json index 7224778..d2bc177 100644 --- a/server/src/data/split/3230f7e4-e084-4b58-89d3-61d5ecffc917_devenvinfoserver.json +++ b/server/src/data/split/3230f7e4-e084-4b58-89d3-61d5ecffc917_devenvinfoserver.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "40d15bb163a85c095e3c32274447653f587715a7", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3235b203-956c-4c83-a3bd-981a8e34347f_supabase.json b/server/src/data/split/3235b203-956c-4c83-a3bd-981a8e34347f_supabase.json index 94d26f5..ac50985 100644 --- a/server/src/data/split/3235b203-956c-4c83-a3bd-981a8e34347f_supabase.json +++ b/server/src/data/split/3235b203-956c-4c83-a3bd-981a8e34347f_supabase.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "fde9623c6f8d67f69496bc2f896a5a5284b095da", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/323a86db-9dd8-44e4-99a9-f6daa6464ae9_uiflowchartcreator.json b/server/src/data/split/323a86db-9dd8-44e4-99a9-f6daa6464ae9_uiflowchartcreator.json index a1714e5..8fc9bc8 100644 --- a/server/src/data/split/323a86db-9dd8-44e4-99a9-f6daa6464ae9_uiflowchartcreator.json +++ b/server/src/data/split/323a86db-9dd8-44e4-99a9-f6daa6464ae9_uiflowchartcreator.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4eef4fc0885cc6d2575f9f47ea83660e0046b013", - "githubForks": 7, + "githubForks": 8, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/32413c07-e6a5-477f-b6d9-9b1904bc3ffa_collegefootballdata.json b/server/src/data/split/32413c07-e6a5-477f-b6d9-9b1904bc3ffa_collegefootballdata.json index ab81d13..69beca0 100644 --- a/server/src/data/split/32413c07-e6a5-477f-b6d9-9b1904bc3ffa_collegefootballdata.json +++ b/server/src/data/split/32413c07-e6a5-477f-b6d9-9b1904bc3ffa_collegefootballdata.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "2a93df177d71b3b1688a7b34889d7a58d2aed6b2", - "githubForks": 7, + "githubForks": 8, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/32530bdd-8b6c-4f7c-b724-9e188c1d7a63_webscraperduckduckgosearch.json b/server/src/data/split/32530bdd-8b6c-4f7c-b724-9e188c1d7a63_webscraperduckduckgosearch.json index 0dd4627..34652a4 100644 --- a/server/src/data/split/32530bdd-8b6c-4f7c-b724-9e188c1d7a63_webscraperduckduckgosearch.json +++ b/server/src/data/split/32530bdd-8b6c-4f7c-b724-9e188c1d7a63_webscraperduckduckgosearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "db9db79cfcb56d67cbb87c5e16ebd40380183b32", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/326669b5-5be6-4c50-a035-5bb5a1457c1c_kubernetesmonitoring.json b/server/src/data/split/326669b5-5be6-4c50-a035-5bb5a1457c1c_kubernetesmonitoring.json index 6340b91..eaee5a3 100644 --- a/server/src/data/split/326669b5-5be6-4c50-a035-5bb5a1457c1c_kubernetesmonitoring.json +++ b/server/src/data/split/326669b5-5be6-4c50-a035-5bb5a1457c1c_kubernetesmonitoring.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "0307ba9d14650f054008fb498d4fc4b8d4cb1abb", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/326793a3-1999-4e7b-9964-e5a5cfc4fc6c_archaihexagonalarchitectureanalyzer.json b/server/src/data/split/326793a3-1999-4e7b-9964-e5a5cfc4fc6c_archaihexagonalarchitectureanalyzer.json index ab0d371..baa5070 100644 --- a/server/src/data/split/326793a3-1999-4e7b-9964-e5a5cfc4fc6c_archaihexagonalarchitectureanalyzer.json +++ b/server/src/data/split/326793a3-1999-4e7b-9964-e5a5cfc4fc6c_archaihexagonalarchitectureanalyzer.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "7390e15e52dd291e7318de9f71a94482ac09bdd3", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/32b6cace-6333-4fc5-add4-157088e2f036_iterm.json b/server/src/data/split/32b6cace-6333-4fc5-add4-157088e2f036_iterm.json index 587f5f7..e00feb2 100644 --- a/server/src/data/split/32b6cace-6333-4fc5-add4-157088e2f036_iterm.json +++ b/server/src/data/split/32b6cace-6333-4fc5-add4-157088e2f036_iterm.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d6801a39266250191f9dbc8c030a659cd254dad0", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/32bd9740-67ad-46b4-b347-548e6856ef63_unixmanual.json b/server/src/data/split/32bd9740-67ad-46b4-b347-548e6856ef63_unixmanual.json index f78eb0d..91a69cd 100644 --- a/server/src/data/split/32bd9740-67ad-46b4-b347-548e6856ef63_unixmanual.json +++ b/server/src/data/split/32bd9740-67ad-46b4-b347-548e6856ef63_unixmanual.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "79b511aeda80a8fe766731974cebfe03dfecafa2", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/32c4054c-06c9-49d7-8aa2-ce59098e2dfa_azuredevops.json b/server/src/data/split/32c4054c-06c9-49d7-8aa2-ce59098e2dfa_azuredevops.json index 2df4536..1dc1a76 100644 --- a/server/src/data/split/32c4054c-06c9-49d7-8aa2-ce59098e2dfa_azuredevops.json +++ b/server/src/data/split/32c4054c-06c9-49d7-8aa2-ce59098e2dfa_azuredevops.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 16, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", "updatedAt": "2025-04-01T13:40:30Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "fc41220dd2518a386619c87f894b0445052d91be", - "githubForks": 9, + "githubForks": 10, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/32d79bed-1884-416b-aab3-344189b85caa_pagespeedinsights.json b/server/src/data/split/32d79bed-1884-416b-aab3-344189b85caa_pagespeedinsights.json index 22f3ec8..c375c34 100644 --- a/server/src/data/split/32d79bed-1884-416b-aab3-344189b85caa_pagespeedinsights.json +++ b/server/src/data/split/32d79bed-1884-416b-aab3-344189b85caa_pagespeedinsights.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "58626af2046a88b3e15fd8efad674f07684de77e", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/330f0ff9-68c8-4e9b-b1a4-6185001aae06_deebo.json b/server/src/data/split/330f0ff9-68c8-4e9b-b1a4-6185001aae06_deebo.json index caa2b47..9fb0cc0 100644 --- a/server/src/data/split/330f0ff9-68c8-4e9b-b1a4-6185001aae06_deebo.json +++ b/server/src/data/split/330f0ff9-68c8-4e9b-b1a4-6185001aae06_deebo.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 402, + "githubStars": 430, "downloadCount": 0, "createdAt": "2025-04-27T15:33:15.229Z", - "updatedAt": "2025-04-28T01:39:06Z", + "updatedAt": "2025-04-28T22:17:24Z", "hubId": "330f0ff9-68c8-4e9b-b1a4-6185001aae06", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "snagasuri", - "githubLatestCommit": "14b376d06dc5c3cab6cd102708eff4d1ed436082", - "githubForks": 31, + "githubLatestCommit": "d26e93452ee45a4e324a279fa7fb7a1d9153340c", + "githubForks": 34, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3314bb9a-a6ad-4cae-a183-e7b030485627_googleads.json b/server/src/data/split/3314bb9a-a6ad-4cae-a183-e7b030485627_googleads.json index 3aae815..810f79f 100644 --- a/server/src/data/split/3314bb9a-a6ad-4cae-a183-e7b030485627_googleads.json +++ b/server/src/data/split/3314bb9a-a6ad-4cae-a183-e7b030485627_googleads.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 65, + "githubStars": 67, "downloadCount": 0, "createdAt": "2025-03-20T21:59:38.010849+00:00", "updatedAt": "2025-04-23T05:51:39Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "557a40ed6371b18a225d0564829648e4014461d6", - "githubForks": 14, + "githubForks": 15, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3324e13e-faf9-405d-8693-c5b0a25d34a3_codingwithperplexityai.json b/server/src/data/split/3324e13e-faf9-405d-8693-c5b0a25d34a3_codingwithperplexityai.json index 2e3eb8f..b4700aa 100644 --- a/server/src/data/split/3324e13e-faf9-405d-8693-c5b0a25d34a3_codingwithperplexityai.json +++ b/server/src/data/split/3324e13e-faf9-405d-8693-c5b0a25d34a3_codingwithperplexityai.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "1006127ef11af35873eddb1d24bd38f9cc7de4ea", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/333db359-0da0-40d2-880f-73fe22e46af9_jdbc.json b/server/src/data/split/333db359-0da0-40d2-880f-73fe22e46af9_jdbc.json index 60f2d34..b4c05ee 100644 --- a/server/src/data/split/333db359-0da0-40d2-880f-73fe22e46af9_jdbc.json +++ b/server/src/data/split/333db359-0da0-40d2-880f-73fe22e46af9_jdbc.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 109, + "githubStars": 111, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-18T09:21:26Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "quarkiverse", "githubLatestCommit": "c7cf4a5ea122938fd9f05fb62928bb011c2759c9", - "githubForks": 28, + "githubForks": 29, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/33658915-96d5-44f3-8f91-d124e9c3e1ed_nasa.json b/server/src/data/split/33658915-96d5-44f3-8f91-d124e9c3e1ed_nasa.json index 79641a8..792f1b9 100644 --- a/server/src/data/split/33658915-96d5-44f3-8f91-d124e9c3e1ed_nasa.json +++ b/server/src/data/split/33658915-96d5-44f3-8f91-d124e9c3e1ed_nasa.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 23, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-26T00:24:46Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "ProgramComputer", "githubLatestCommit": "6ace883346d05d301eb207eccc284abd096f7ab5", - "githubForks": 3, + "githubForks": 4, "licenseType": "ISC" } \ No newline at end of file diff --git a/server/src/data/split/337cfba1-d86b-4c82-b36e-0714aaf1b28d_finnhub.json b/server/src/data/split/337cfba1-d86b-4c82-b36e-0714aaf1b28d_finnhub.json index abec9e0..583c7c8 100644 --- a/server/src/data/split/337cfba1-d86b-4c82-b36e-0714aaf1b28d_finnhub.json +++ b/server/src/data/split/337cfba1-d86b-4c82-b36e-0714aaf1b28d_finnhub.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5190bbf5441e3cadd9cbae352386dbb516324ec4", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/339fd14d-4251-4359-a523-7bc2eabdafd5_geoapifymapgenerator.json b/server/src/data/split/339fd14d-4251-4359-a523-7bc2eabdafd5_geoapifymapgenerator.json index 907e624..9200600 100644 --- a/server/src/data/split/339fd14d-4251-4359-a523-7bc2eabdafd5_geoapifymapgenerator.json +++ b/server/src/data/split/339fd14d-4251-4359-a523-7bc2eabdafd5_geoapifymapgenerator.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c6a9048788c1f7cbf519d9aa593abe519cf69f67", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/33a20d18-36a0-4c4f-bbbf-41cbc37f7cf5_mongodb.json b/server/src/data/split/33a20d18-36a0-4c4f-bbbf-41cbc37f7cf5_mongodb.json index c97a67a..c6bbf27 100644 --- a/server/src/data/split/33a20d18-36a0-4c4f-bbbf-41cbc37f7cf5_mongodb.json +++ b/server/src/data/split/33a20d18-36a0-4c4f-bbbf-41cbc37f7cf5_mongodb.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 125, + "githubStars": 127, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-03-15T23:32:51Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8bf10970b878be089d417c545c01f5be88b1ded5", - "githubForks": 21, + "githubForks": 22, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/33a38b70-d476-4ce3-881b-275f4a99ef2a_sequentialthinking.json b/server/src/data/split/33a38b70-d476-4ce3-881b-275f4a99ef2a_sequentialthinking.json index c318472..05368b8 100644 --- a/server/src/data/split/33a38b70-d476-4ce3-881b-275f4a99ef2a_sequentialthinking.json +++ b/server/src/data/split/33a38b70-d476-4ce3-881b-275f4a99ef2a_sequentialthinking.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5aad753c6c8f612cb447e74b6cdffb49e35e1ff2", - "githubForks": 16, + "githubForks": 17, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/33c34d17-ab05-404c-bd0c-0ebb38f12bbd_goosefmradio.json b/server/src/data/split/33c34d17-ab05-404c-bd0c-0ebb38f12bbd_goosefmradio.json index 8ea5a12..3de83fb 100644 --- a/server/src/data/split/33c34d17-ab05-404c-bd0c-0ebb38f12bbd_goosefmradio.json +++ b/server/src/data/split/33c34d17-ab05-404c-bd0c-0ebb38f12bbd_goosefmradio.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "cffdb6565fdb859083e44ac6071edc0050bdbed7", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/33fb1e26-b12b-40fa-a5ea-074d254b420d_minecraftrcon.json b/server/src/data/split/33fb1e26-b12b-40fa-a5ea-074d254b420d_minecraftrcon.json index 1a4a8eb..1a6009e 100644 --- a/server/src/data/split/33fb1e26-b12b-40fa-a5ea-074d254b420d_minecraftrcon.json +++ b/server/src/data/split/33fb1e26-b12b-40fa-a5ea-074d254b420d_minecraftrcon.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e54cbb6a7541d841722f699b4cf82ff34ca530e9", - "githubForks": 4, + "githubForks": 5, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/343a1e83-f716-4c18-86f2-a0482b022206_xeromcpserver.json b/server/src/data/split/343a1e83-f716-4c18-86f2-a0482b022206_xeromcpserver.json index 3399ffa..fcec87c 100644 --- a/server/src/data/split/343a1e83-f716-4c18-86f2-a0482b022206_xeromcpserver.json +++ b/server/src/data/split/343a1e83-f716-4c18-86f2-a0482b022206_xeromcpserver.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "john-zhang-dev", "githubLatestCommit": "3459e3704d7ebdbe455fc0480bc23d59f20eb214", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3448b5e7-cae6-4dc0-b07e-5616610ba217_googledrive.json b/server/src/data/split/3448b5e7-cae6-4dc0-b07e-5616610ba217_googledrive.json index 6ddb981..7daef0a 100644 --- a/server/src/data/split/3448b5e7-cae6-4dc0-b07e-5616610ba217_googledrive.json +++ b/server/src/data/split/3448b5e7-cae6-4dc0-b07e-5616610ba217_googledrive.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e7534ecfe6246424221cd1e0cfd59b36a12762b8", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/34577bc2-1e18-45ae-9311-25565c573311_redis.json b/server/src/data/split/34577bc2-1e18-45ae-9311-25565c573311_redis.json index b9aca0f..8424778 100644 --- a/server/src/data/split/34577bc2-1e18-45ae-9311-25565c573311_redis.json +++ b/server/src/data/split/34577bc2-1e18-45ae-9311-25565c573311_redis.json @@ -12,13 +12,13 @@ "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-25T06:58:23Z", + "updatedAt": "2025-04-28T12:19:35Z", "hubId": "34577bc2-1e18-45ae-9311-25565c573311", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "redis", - "githubLatestCommit": "61585cfeea85ab30f292e57fb54d4c3a61535b4b", - "githubForks": 8, + "githubLatestCommit": "1f675b0141c033c3cb755e36cf6ef2ad6a6f1da6", + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3460193c-28f9-477d-8784-d6f673bfac0d_pytorchhud.json b/server/src/data/split/3460193c-28f9-477d-8784-d6f673bfac0d_pytorchhud.json index fbadabc..dc91320 100644 --- a/server/src/data/split/3460193c-28f9-477d-8784-d6f673bfac0d_pytorchhud.json +++ b/server/src/data/split/3460193c-28f9-477d-8784-d6f673bfac0d_pytorchhud.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "52982616272154ea4bdba57a1271794e25cdfcb3", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/34842e91-7299-418d-a479-786e5ff9c1a9_dalle.json b/server/src/data/split/34842e91-7299-418d-a479-786e5ff9c1a9_dalle.json index 89362d2..c6ed18e 100644 --- a/server/src/data/split/34842e91-7299-418d-a479-786e5ff9c1a9_dalle.json +++ b/server/src/data/split/34842e91-7299-418d-a479-786e5ff9c1a9_dalle.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8337a12f149c8d3647540ef581286c35ae038171", - "githubForks": 5, + "githubForks": 6, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/349b4e9e-4d55-4c08-b4c8-dcf334973142_gmail.json b/server/src/data/split/349b4e9e-4d55-4c08-b4c8-dcf334973142_gmail.json index 5a5af37..3cfac21 100644 --- a/server/src/data/split/349b4e9e-4d55-4c08-b4c8-dcf334973142_gmail.json +++ b/server/src/data/split/349b4e9e-4d55-4c08-b4c8-dcf334973142_gmail.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8a75deeeff1cf1cf30cfc6a6d9bd9c0d051251b4", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/34b575c5-316f-4711-a3dd-cd24f83b1374_awsbedrockknowledgebase.json b/server/src/data/split/34b575c5-316f-4711-a3dd-cd24f83b1374_awsbedrockknowledgebase.json index 8a0cc85..30ac943 100644 --- a/server/src/data/split/34b575c5-316f-4711-a3dd-cd24f83b1374_awsbedrockknowledgebase.json +++ b/server/src/data/split/34b575c5-316f-4711-a3dd-cd24f83b1374_awsbedrockknowledgebase.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41715, + "githubStars": 42028, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/34bb9602-ed35-4e4d-8234-b974b7ae47a1_mcprouter.json b/server/src/data/split/34bb9602-ed35-4e4d-8234-b974b7ae47a1_mcprouter.json index 0e73114..1367f9d 100644 --- a/server/src/data/split/34bb9602-ed35-4e4d-8234-b974b7ae47a1_mcprouter.json +++ b/server/src/data/split/34bb9602-ed35-4e4d-8234-b974b7ae47a1_mcprouter.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 35, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T18:24:35Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "mcp-router", "githubLatestCommit": "c9c5f0d38281ac2970db2a1580ce3dc8499dc266", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/35017a01-2752-4278-98ea-86e2af926c9b_aqicnairquality.json b/server/src/data/split/35017a01-2752-4278-98ea-86e2af926c9b_aqicnairquality.json index 6fc63f7..66a2651 100644 --- a/server/src/data/split/35017a01-2752-4278-98ea-86e2af926c9b_aqicnairquality.json +++ b/server/src/data/split/35017a01-2752-4278-98ea-86e2af926c9b_aqicnairquality.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "44d7d9ffcff934fe722b201b350776855579af62", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/353420aa-ebd0-436f-a1ee-1233fed7d14a_harvest.json b/server/src/data/split/353420aa-ebd0-436f-a1ee-1233fed7d14a_harvest.json index 271982b..642ce90 100644 --- a/server/src/data/split/353420aa-ebd0-436f-a1ee-1233fed7d14a_harvest.json +++ b/server/src/data/split/353420aa-ebd0-436f-a1ee-1233fed7d14a_harvest.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "6efdd650f1b3fabf521ebefb6115bcdb73b986c0", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/353a2988-4a9d-456c-bac6-3e4827852fe5_apidocumentation.json b/server/src/data/split/353a2988-4a9d-456c-bac6-3e4827852fe5_apidocumentation.json index f234fd5..ab21dde 100644 --- a/server/src/data/split/353a2988-4a9d-456c-bac6-3e4827852fe5_apidocumentation.json +++ b/server/src/data/split/353a2988-4a9d-456c-bac6-3e4827852fe5_apidocumentation.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "2e64ec58e961622eb370c179e37f9d075f871c33", - "githubForks": 4, + "githubForks": 5, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/354b95d1-6ec5-4b8c-94d0-24668df8b1a5_semgrep.json b/server/src/data/split/354b95d1-6ec5-4b8c-94d0-24668df8b1a5_semgrep.json index 8dc213f..ae6d9a1 100644 --- a/server/src/data/split/354b95d1-6ec5-4b8c-94d0-24668df8b1a5_semgrep.json +++ b/server/src/data/split/354b95d1-6ec5-4b8c-94d0-24668df8b1a5_semgrep.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 135, + "githubStars": 138, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-10T15:28:10Z", + "updatedAt": "2025-04-28T21:06:05Z", "hubId": "354b95d1-6ec5-4b8c-94d0-24668df8b1a5", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "semgrep", - "githubLatestCommit": "28587ce0c26f988ce75483f09605289c843cc6c9", - "githubForks": 12, + "githubLatestCommit": "a2def0eb07fe06e3a5ce3810f516a1e15266dac3", + "githubForks": 13, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/35772185-36c3-4280-a452-e8984f3e91e5_browseruse.json b/server/src/data/split/35772185-36c3-4280-a452-e8984f3e91e5_browseruse.json index 79b11ab..fc2509e 100644 --- a/server/src/data/split/35772185-36c3-4280-a452-e8984f3e91e5_browseruse.json +++ b/server/src/data/split/35772185-36c3-4280-a452-e8984f3e91e5_browseruse.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 387, + "githubStars": 393, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-22T03:38:02Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "co-browser", "githubLatestCommit": "3618120b28c67764979e95132465d95038a675d4", - "githubForks": 40, + "githubForks": 41, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/35bd3d43-810a-4739-afef-a5daeba9d9ce_wegene.json b/server/src/data/split/35bd3d43-810a-4739-afef-a5daeba9d9ce_wegene.json index f6a9149..0fa5850 100644 --- a/server/src/data/split/35bd3d43-810a-4739-afef-a5daeba9d9ce_wegene.json +++ b/server/src/data/split/35bd3d43-810a-4739-afef-a5daeba9d9ce_wegene.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ded9744fee7edff7c3ca0f1a632beaad5bd9f052", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/35d1ebc2-6a53-4dd2-a09a-113655d77771_figma.json b/server/src/data/split/35d1ebc2-6a53-4dd2-a09a-113655d77771_figma.json index 506bd99..3778f52 100644 --- a/server/src/data/split/35d1ebc2-6a53-4dd2-a09a-113655d77771_figma.json +++ b/server/src/data/split/35d1ebc2-6a53-4dd2-a09a-113655d77771_figma.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a537ef3e53ae2541f6e4054f8382c818514af00c", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/35e7528b-9ea3-42cf-8f70-b4a28f30c088_vercelapi.json b/server/src/data/split/35e7528b-9ea3-42cf-8f70-b4a28f30c088_vercelapi.json index 61f04bd..4e67673 100644 --- a/server/src/data/split/35e7528b-9ea3-42cf-8f70-b4a28f30c088_vercelapi.json +++ b/server/src/data/split/35e7528b-9ea3-42cf-8f70-b4a28f30c088_vercelapi.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5bd1bd952b9c7150d4947797d110f0c8ec0f75c9", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/36666812-826b-4e1a-a1c7-043cbd0512f3_softwareplanning.json b/server/src/data/split/36666812-826b-4e1a-a1c7-043cbd0512f3_softwareplanning.json index 5b3e48b..4232a28 100644 --- a/server/src/data/split/36666812-826b-4e1a-a1c7-043cbd0512f3_softwareplanning.json +++ b/server/src/data/split/36666812-826b-4e1a-a1c7-043cbd0512f3_softwareplanning.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 186, + "githubStars": 189, "downloadCount": 2966, "createdAt": "2025-02-18T23:03:50.971515Z", "updatedAt": "2025-03-14T09:35:58Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8f5458556c25e01a0843a0732998ff39bbb5504f", - "githubForks": 28, + "githubForks": 29, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3684b30c-34e4-48d7-8748-bd070a5bf7d5_freeagent.json b/server/src/data/split/3684b30c-34e4-48d7-8748-bd070a5bf7d5_freeagent.json index 57d0ef8..fa69c07 100644 --- a/server/src/data/split/3684b30c-34e4-48d7-8748-bd070a5bf7d5_freeagent.json +++ b/server/src/data/split/3684b30c-34e4-48d7-8748-bd070a5bf7d5_freeagent.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a4172770ab863d4ab34fe08d9cbcf92025caa66a", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/36884f0c-29f1-4acd-ba49-71aa746b8872_allinonedevtools.json b/server/src/data/split/36884f0c-29f1-4acd-ba49-71aa746b8872_allinonedevtools.json index a589eed..03b902d 100644 --- a/server/src/data/split/36884f0c-29f1-4acd-ba49-71aa746b8872_allinonedevtools.json +++ b/server/src/data/split/36884f0c-29f1-4acd-ba49-71aa746b8872_allinonedevtools.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "342c09febf99330cc1e60fba0d5c104411781159", - "githubForks": 6, + "githubForks": 7, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/368adae0-0746-468a-9e8a-9030268b2a42_mcpguardian.json b/server/src/data/split/368adae0-0746-468a-9e8a-9030268b2a42_mcpguardian.json index 2bd5c0f..661d449 100644 --- a/server/src/data/split/368adae0-0746-468a-9e8a-9030268b2a42_mcpguardian.json +++ b/server/src/data/split/368adae0-0746-468a-9e8a-9030268b2a42_mcpguardian.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 57, + "githubStars": 59, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-10T19:04:48Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "eqtylab", "githubLatestCommit": "54395bfe65c8db7192d62a6e6ecab246f818193f", - "githubForks": 3, + "githubForks": 4, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/36a8b1fe-b972-4605-ab4f-cf44a9b79eed_calctools.json b/server/src/data/split/36a8b1fe-b972-4605-ab4f-cf44a9b79eed_calctools.json index b249b49..e228fa1 100644 --- a/server/src/data/split/36a8b1fe-b972-4605-ab4f-cf44a9b79eed_calctools.json +++ b/server/src/data/split/36a8b1fe-b972-4605-ab4f-cf44a9b79eed_calctools.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e1704549c7770594b1ce7c58307a355c96e8895b", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/36bbeb0d-ca1b-469e-a60d-2cfa2f370fc3_cleverclouddocumentation.json b/server/src/data/split/36bbeb0d-ca1b-469e-a60d-2cfa2f370fc3_cleverclouddocumentation.json index a282c0e..c12305e 100644 --- a/server/src/data/split/36bbeb0d-ca1b-469e-a60d-2cfa2f370fc3_cleverclouddocumentation.json +++ b/server/src/data/split/36bbeb0d-ca1b-469e-a60d-2cfa2f370fc3_cleverclouddocumentation.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d63806db6901aee384c5ba3bbf2a6953b145dc76", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/36e4a170-022f-46b5-9786-151c7069f187_membase.json b/server/src/data/split/36e4a170-022f-46b5-9786-151c7069f187_membase.json index 039027e..29201db 100644 --- a/server/src/data/split/36e4a170-022f-46b5-9786-151c7069f187_membase.json +++ b/server/src/data/split/36e4a170-022f-46b5-9786-151c7069f187_membase.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "unibaseio", "githubLatestCommit": "544cea4377aec63297805a344272d673335a10fc", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/36fcaada-20f6-41ef-8cbf-64e611814fe1_dalleimagegeneration.json b/server/src/data/split/36fcaada-20f6-41ef-8cbf-64e611814fe1_dalleimagegeneration.json index 4b851fd..26fefa8 100644 --- a/server/src/data/split/36fcaada-20f6-41ef-8cbf-64e611814fe1_dalleimagegeneration.json +++ b/server/src/data/split/36fcaada-20f6-41ef-8cbf-64e611814fe1_dalleimagegeneration.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "17384ff73a3ec5f34a67ac2dfb8fe6a711b54469", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/36fdc04d-e5d4-45d3-94f1-571c24af676b_postgresql.json b/server/src/data/split/36fdc04d-e5d4-45d3-94f1-571c24af676b_postgresql.json index 43fc777..03f6b5f 100644 --- a/server/src/data/split/36fdc04d-e5d4-45d3-94f1-571c24af676b_postgresql.json +++ b/server/src/data/split/36fdc04d-e5d4-45d3-94f1-571c24af676b_postgresql.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41715, + "githubStars": 42028, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/371acb11-29bf-4d5f-9e0e-1c14f4816143_daipendencypublicapidocs.json b/server/src/data/split/371acb11-29bf-4d5f-9e0e-1c14f4816143_daipendencypublicapidocs.json index 94d3518..d533583 100644 --- a/server/src/data/split/371acb11-29bf-4d5f-9e0e-1c14f4816143_daipendencypublicapidocs.json +++ b/server/src/data/split/371acb11-29bf-4d5f-9e0e-1c14f4816143_daipendencypublicapidocs.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "afebe9ee3853531727016499c65972c16026236b", - "githubForks": 6, + "githubForks": 7, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3738445d-e4fc-418c-b945-7490779f95bc_supabase.json b/server/src/data/split/3738445d-e4fc-418c-b945-7490779f95bc_supabase.json index 9631986..d93dad1 100644 --- a/server/src/data/split/3738445d-e4fc-418c-b945-7490779f95bc_supabase.json +++ b/server/src/data/split/3738445d-e4fc-418c-b945-7490779f95bc_supabase.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "db03237d92f7dc2f0da0d70a87dba84ebcde5b66", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/373888d7-0d5a-45f2-935d-a320738e9458_optimizedmemory.json b/server/src/data/split/373888d7-0d5a-45f2-935d-a320738e9458_optimizedmemory.json index 70cf448..5fa734b 100644 --- a/server/src/data/split/373888d7-0d5a-45f2-935d-a320738e9458_optimizedmemory.json +++ b/server/src/data/split/373888d7-0d5a-45f2-935d-a320738e9458_optimizedmemory.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "9543af5d1c203e8dfd531f96d20ba31ad33775e3", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/37922238-d08f-4fec-b884-1d5afed8e768_calculator.json b/server/src/data/split/37922238-d08f-4fec-b884-1d5afed8e768_calculator.json index 449173a..397e76b 100644 --- a/server/src/data/split/37922238-d08f-4fec-b884-1d5afed8e768_calculator.json +++ b/server/src/data/split/37922238-d08f-4fec-b884-1d5afed8e768_calculator.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "githejie", "githubLatestCommit": "5b828b921e5f187c2de0a8d6c597885fce3b3b86", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/37ace619-7a9c-4abd-b1e5-eee853a6dca3_clickhouse.json b/server/src/data/split/37ace619-7a9c-4abd-b1e5-eee853a6dca3_clickhouse.json index a06b655..1f04e6a 100644 --- a/server/src/data/split/37ace619-7a9c-4abd-b1e5-eee853a6dca3_clickhouse.json +++ b/server/src/data/split/37ace619-7a9c-4abd-b1e5-eee853a6dca3_clickhouse.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "062b37bcc382184b89ccb39bd46172c589f34893", - "githubForks": 4, + "githubForks": 5, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3809c15a-a4b9-460d-8fed-ccd154096cea_asana.json b/server/src/data/split/3809c15a-a4b9-460d-8fed-ccd154096cea_asana.json index 057e9f4..776fa5a 100644 --- a/server/src/data/split/3809c15a-a4b9-460d-8fed-ccd154096cea_asana.json +++ b/server/src/data/split/3809c15a-a4b9-460d-8fed-ccd154096cea_asana.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 63, + "githubStars": 64, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-07T19:00:14Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "0335fe440b3a0b64b975f567475571be1d6bdd88", - "githubForks": 20, + "githubForks": 21, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/38160807-6069-46b8-aadb-6dfebf064792_abletonlive.json b/server/src/data/split/38160807-6069-46b8-aadb-6dfebf064792_abletonlive.json index e813dad..f41eb63 100644 --- a/server/src/data/split/38160807-6069-46b8-aadb-6dfebf064792_abletonlive.json +++ b/server/src/data/split/38160807-6069-46b8-aadb-6dfebf064792_abletonlive.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 225, + "githubStars": 226, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-26T16:05:41Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "Simon-Kansara", "githubLatestCommit": "97e7585e212d1430493bf04b7af637d315227b02", - "githubForks": 38, + "githubForks": 39, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/381d1a6b-3609-43d3-88b4-3de2e08d925b_claudedesktoprestart.json b/server/src/data/split/381d1a6b-3609-43d3-88b4-3de2e08d925b_claudedesktoprestart.json index 1fdd271..0692852 100644 --- a/server/src/data/split/381d1a6b-3609-43d3-88b4-3de2e08d925b_claudedesktoprestart.json +++ b/server/src/data/split/381d1a6b-3609-43d3-88b4-3de2e08d925b_claudedesktoprestart.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d8ef65c108f21725e79b05519d70a2e78051742d", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3827663b-c671-42b1-853e-421a7e836935_solanaagentkit.json b/server/src/data/split/3827663b-c671-42b1-853e-421a7e836935_solanaagentkit.json index 81d94da..df1f4e6 100644 --- a/server/src/data/split/3827663b-c671-42b1-853e-421a7e836935_solanaagentkit.json +++ b/server/src/data/split/3827663b-c671-42b1-853e-421a7e836935_solanaagentkit.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1254, + "githubStars": 1255, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T11:07:41Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "sendaifun", "githubLatestCommit": "98cd9ca278e68aaa35e14f96eb503755ca9dc517", - "githubForks": 669, + "githubForks": 670, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/382bf111-d082-41d7-aebd-cb9d6c93e154_greptimedb.json b/server/src/data/split/382bf111-d082-41d7-aebd-cb9d6c93e154_greptimedb.json index 48eb783..200bc46 100644 --- a/server/src/data/split/382bf111-d082-41d7-aebd-cb9d6c93e154_greptimedb.json +++ b/server/src/data/split/382bf111-d082-41d7-aebd-cb9d6c93e154_greptimedb.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 5012, + "githubStars": 5035, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T06:08:02Z", + "updatedAt": "2025-04-29T03:28:00Z", "hubId": "382bf111-d082-41d7-aebd-cb9d6c93e154", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "GreptimeTeam", - "githubLatestCommit": "13ac4d5048058dbfcde92a247fcec729efc15cbd", - "githubForks": 363, + "githubLatestCommit": "a3ae2d7b52703a4cbb1190a4261b607c21418c4e", + "githubForks": 365, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3845998a-3ae7-454d-849b-9695f1a9ff1a_tinybird.json b/server/src/data/split/3845998a-3ae7-454d-849b-9695f1a9ff1a_tinybird.json index e9b8a1d..aa03527 100644 --- a/server/src/data/split/3845998a-3ae7-454d-849b-9695f1a9ff1a_tinybird.json +++ b/server/src/data/split/3845998a-3ae7-454d-849b-9695f1a9ff1a_tinybird.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "baf218b83ef6e02310093cdbc700ecd997d32e0b", - "githubForks": 11, + "githubForks": 12, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3876af3c-35c4-49a9-a037-4ec9f0cd14d2_filesystem.json b/server/src/data/split/3876af3c-35c4-49a9-a037-4ec9f0cd14d2_filesystem.json index a0359f6..daeb0aa 100644 --- a/server/src/data/split/3876af3c-35c4-49a9-a037-4ec9f0cd14d2_filesystem.json +++ b/server/src/data/split/3876af3c-35c4-49a9-a037-4ec9f0cd14d2_filesystem.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "77e83756ef9db1383d7d11fdec91d3635243835b", - "githubForks": 5, + "githubForks": 6, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/38828136-e5e2-45e8-9d6f-39b211816203_comfyui.json b/server/src/data/split/38828136-e5e2-45e8-9d6f-39b211816203_comfyui.json index 056cc10..664b1bf 100644 --- a/server/src/data/split/38828136-e5e2-45e8-9d6f-39b211816203_comfyui.json +++ b/server/src/data/split/38828136-e5e2-45e8-9d6f-39b211816203_comfyui.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a26ac6cfe7b5c5db36bbf80bf6d92ef3716f2d65", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3887b801-7e58-4868-af1c-dc62646f400a_anilist.json b/server/src/data/split/3887b801-7e58-4868-af1c-dc62646f400a_anilist.json index 4550d1b..7d98893 100644 --- a/server/src/data/split/3887b801-7e58-4868-af1c-dc62646f400a_anilist.json +++ b/server/src/data/split/3887b801-7e58-4868-af1c-dc62646f400a_anilist.json @@ -23,6 +23,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c95421cfcea2f425e89ac1740c343ee806277428", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/38968072-84bc-4af0-b833-0e534f3a997a_openapischema.json b/server/src/data/split/38968072-84bc-4af0-b833-0e534f3a997a_openapischema.json index deedc9e..81ee39c 100644 --- a/server/src/data/split/38968072-84bc-4af0-b833-0e534f3a997a_openapischema.json +++ b/server/src/data/split/38968072-84bc-4af0-b833-0e534f3a997a_openapischema.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f676a03d2ef6194a6ca875b91da23e89dc78694a", - "githubForks": 5, + "githubForks": 6, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/38b4ffe4-55cd-42c1-beb9-d4117c85d9c4_mentordeepseek.json b/server/src/data/split/38b4ffe4-55cd-42c1-beb9-d4117c85d9c4_mentordeepseek.json index 92f8f83..46fa806 100644 --- a/server/src/data/split/38b4ffe4-55cd-42c1-beb9-d4117c85d9c4_mentordeepseek.json +++ b/server/src/data/split/38b4ffe4-55cd-42c1-beb9-d4117c85d9c4_mentordeepseek.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 26, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-01-26T04:20:19Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "b95463610f49a2622696ffb0e3c904102d6ecd41", - "githubForks": 11, + "githubForks": 12, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/38f695e3-b0db-4cfa-96a9-c6f2ec67d771_jenkins.json b/server/src/data/split/38f695e3-b0db-4cfa-96a9-c6f2ec67d771_jenkins.json index e54b2d6..eaaee2f 100644 --- a/server/src/data/split/38f695e3-b0db-4cfa-96a9-c6f2ec67d771_jenkins.json +++ b/server/src/data/split/38f695e3-b0db-4cfa-96a9-c6f2ec67d771_jenkins.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "6708ae5ccd5b572a0fec72a3785bf5b719fb7267", - "githubForks": 6, + "githubForks": 7, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3912d563-9080-4e88-af58-319544dd4167_whoop.json b/server/src/data/split/3912d563-9080-4e88-af58-319544dd4167_whoop.json index 2ef77aa..ee2ee03 100644 --- a/server/src/data/split/3912d563-9080-4e88-af58-319544dd4167_whoop.json +++ b/server/src/data/split/3912d563-9080-4e88-af58-319544dd4167_whoop.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "875d44a50a091eca6dc99cb8637fad28f2dee03a", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/393ed12c-1a51-47dc-b19a-9fb8de92b6dc_unity3dgameengine.json b/server/src/data/split/393ed12c-1a51-47dc-b19a-9fb8de92b6dc_unity3dgameengine.json index e7f0bff..7fb7280 100644 --- a/server/src/data/split/393ed12c-1a51-47dc-b19a-9fb8de92b6dc_unity3dgameengine.json +++ b/server/src/data/split/393ed12c-1a51-47dc-b19a-9fb8de92b6dc_unity3dgameengine.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 435, + "githubStars": 436, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T18:32:07Z", + "updatedAt": "2025-04-28T23:25:36Z", "hubId": "393ed12c-1a51-47dc-b19a-9fb8de92b6dc", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "CoderGamester", - "githubLatestCommit": "129d7e3213108fc01b9c16384384b34f58954c9b", - "githubForks": 45, + "githubLatestCommit": "c98534fc541b4053ad66ab1a7b9005895c628164", + "githubForks": 47, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/39ed7e97-2139-4db1-9357-dcc94ad4d82b_knowledgegraphmemory.json b/server/src/data/split/39ed7e97-2139-4db1-9357-dcc94ad4d82b_knowledgegraphmemory.json index b743c16..e69db6e 100644 --- a/server/src/data/split/39ed7e97-2139-4db1-9357-dcc94ad4d82b_knowledgegraphmemory.json +++ b/server/src/data/split/39ed7e97-2139-4db1-9357-dcc94ad4d82b_knowledgegraphmemory.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41715, + "githubStars": 42029, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/39fa86cc-dbf8-46ac-ba12-f3a41403ed54_inkedwritingassistant.json b/server/src/data/split/39fa86cc-dbf8-46ac-ba12-f3a41403ed54_inkedwritingassistant.json index 7213261..92133cf 100644 --- a/server/src/data/split/39fa86cc-dbf8-46ac-ba12-f3a41403ed54_inkedwritingassistant.json +++ b/server/src/data/split/39fa86cc-dbf8-46ac-ba12-f3a41403ed54_inkedwritingassistant.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "26c476a309573cd3196a55e902f5405c756ce6a9", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3a16e2f1-2902-4a04-8376-906c6a6e5361_centralmindgateway.json b/server/src/data/split/3a16e2f1-2902-4a04-8376-906c6a6e5361_centralmindgateway.json index e5e1a01..304432a 100644 --- a/server/src/data/split/3a16e2f1-2902-4a04-8376-906c6a6e5361_centralmindgateway.json +++ b/server/src/data/split/3a16e2f1-2902-4a04-8376-906c6a6e5361_centralmindgateway.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 271, + "githubStars": 281, "downloadCount": 0, "createdAt": "2025-04-11T06:10:33.012Z", "updatedAt": "2025-04-22T14:05:54Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8951f0327af9a1f4623c6bf2f4573558230b24c8", - "githubForks": 18, + "githubForks": 20, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3a307aef-5bf4-4a34-ba61-5ec3130d9f83_applemusic.json b/server/src/data/split/3a307aef-5bf4-4a34-ba61-5ec3130d9f83_applemusic.json index 8ca7bdc..9080b8a 100644 --- a/server/src/data/split/3a307aef-5bf4-4a34-ba61-5ec3130d9f83_applemusic.json +++ b/server/src/data/split/3a307aef-5bf4-4a34-ba61-5ec3130d9f83_applemusic.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "66e0ed60e35dbc25758560deeb228ec582ee77aa", - "githubForks": 6, + "githubForks": 7, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3a677c29-0edf-49bc-a741-a2314f094f70_rustdocs.json b/server/src/data/split/3a677c29-0edf-49bc-a741-a2314f094f70_rustdocs.json index d175f96..ff27285 100644 --- a/server/src/data/split/3a677c29-0edf-49bc-a741-a2314f094f70_rustdocs.json +++ b/server/src/data/split/3a677c29-0edf-49bc-a741-a2314f094f70_rustdocs.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "3bc3cca1992a6572b7ac144f3e8a19e71681b3c5", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3a6ac55e-57ff-4907-ad1c-31bb98444d7c_wazuh.json b/server/src/data/split/3a6ac55e-57ff-4907-ad1c-31bb98444d7c_wazuh.json index f0cf39e..2560943 100644 --- a/server/src/data/split/3a6ac55e-57ff-4907-ad1c-31bb98444d7c_wazuh.json +++ b/server/src/data/split/3a6ac55e-57ff-4907-ad1c-31bb98444d7c_wazuh.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c05d22d0dfac0c0e26b0494f1ad974371cf8c320", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3a9b2a48-2bf6-41f2-801f-08d2c7d63158_ospmarketingtools.json b/server/src/data/split/3a9b2a48-2bf6-41f2-801f-08d2c7d63158_ospmarketingtools.json index 45c8912..5e82413 100644 --- a/server/src/data/split/3a9b2a48-2bf6-41f2-801f-08d2c7d63158_ospmarketingtools.json +++ b/server/src/data/split/3a9b2a48-2bf6-41f2-801f-08d2c7d63158_ospmarketingtools.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 151, + "githubStars": 152, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-23T11:40:17Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "83f55198c4d4e7b315565f00792f63373ff9cc67", - "githubForks": 18, + "githubForks": 19, "licenseType": "CC-BY-SA-4.0" } \ No newline at end of file diff --git a/server/src/data/split/3ab1ccb5-8c5f-438d-9fca-a66782c10655_spotify.json b/server/src/data/split/3ab1ccb5-8c5f-438d-9fca-a66782c10655_spotify.json index a659b7b..6b64767 100644 --- a/server/src/data/split/3ab1ccb5-8c5f-438d-9fca-a66782c10655_spotify.json +++ b/server/src/data/split/3ab1ccb5-8c5f-438d-9fca-a66782c10655_spotify.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "2e4c91c527bef92d1001da28fa593bb23c83dfb2", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3afe9e52-226f-4542-b733-d7d060e79605_awsresourcemanager.json b/server/src/data/split/3afe9e52-226f-4542-b733-d7d060e79605_awsresourcemanager.json index b90b32e..8c0e7e0 100644 --- a/server/src/data/split/3afe9e52-226f-4542-b733-d7d060e79605_awsresourcemanager.json +++ b/server/src/data/split/3afe9e52-226f-4542-b733-d7d060e79605_awsresourcemanager.json @@ -15,7 +15,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 104, + "githubStars": 105, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-08T01:43:24Z", @@ -24,6 +24,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ecc72d251134ed265953d448313a186bdcf5d4d9", - "githubForks": 17, + "githubForks": 18, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3b2fe0a8-d83b-42f2-9683-fef8d8bae0ec_safariscreenshot.json b/server/src/data/split/3b2fe0a8-d83b-42f2-9683-fef8d8bae0ec_safariscreenshot.json index 110c1c4..cb1b9ca 100644 --- a/server/src/data/split/3b2fe0a8-d83b-42f2-9683-fef8d8bae0ec_safariscreenshot.json +++ b/server/src/data/split/3b2fe0a8-d83b-42f2-9683-fef8d8bae0ec_safariscreenshot.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a1d60f269145a9f058b1998401438f87d2c58d6f", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3b60d184-43fc-418f-b528-226a24011aa8_dataextractor.json b/server/src/data/split/3b60d184-43fc-418f-b528-226a24011aa8_dataextractor.json index e10c5ce..c733336 100644 --- a/server/src/data/split/3b60d184-43fc-418f-b528-226a24011aa8_dataextractor.json +++ b/server/src/data/split/3b60d184-43fc-418f-b528-226a24011aa8_dataextractor.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c8044d0cb403607a4c37971f0206617697095a0b", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3bb1536f-b99a-4be9-9e85-e3776a06e30d_canvaviralcontentgenerator.json b/server/src/data/split/3bb1536f-b99a-4be9-9e85-e3776a06e30d_canvaviralcontentgenerator.json index 3c21e0c..b72e3b2 100644 --- a/server/src/data/split/3bb1536f-b99a-4be9-9e85-e3776a06e30d_canvaviralcontentgenerator.json +++ b/server/src/data/split/3bb1536f-b99a-4be9-9e85-e3776a06e30d_canvaviralcontentgenerator.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "9cf0e3fa1b2aa308c7f7bb7ce6f8b9b4f0fcea1e", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3bb9e673-4e6d-4789-8489-696a4670cab0_duckduckgosearch.json b/server/src/data/split/3bb9e673-4e6d-4789-8489-696a4670cab0_duckduckgosearch.json index aeb89f2..c71358d 100644 --- a/server/src/data/split/3bb9e673-4e6d-4789-8489-696a4670cab0_duckduckgosearch.json +++ b/server/src/data/split/3bb9e673-4e6d-4789-8489-696a4670cab0_duckduckgosearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 128, + "githubStars": 134, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-03-11T22:59:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d198a2f0e8bd7c862d87d8517e1518aa295f8348", - "githubForks": 23, + "githubForks": 25, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3bd27c7f-c2ce-4be2-97a3-d4882dbdb2e7_fireproof.json b/server/src/data/split/3bd27c7f-c2ce-4be2-97a3-d4882dbdb2e7_fireproof.json index d602f55..3d92da8 100644 --- a/server/src/data/split/3bd27c7f-c2ce-4be2-97a3-d4882dbdb2e7_fireproof.json +++ b/server/src/data/split/3bd27c7f-c2ce-4be2-97a3-d4882dbdb2e7_fireproof.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "605dbb7ab63ce607a79f861f48d1904672ce76da", - "githubForks": 5, + "githubForks": 6, "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/3c511e7b-a6db-4839-ae2e-70a0d7d500b9_ayd.json b/server/src/data/split/3c511e7b-a6db-4839-ae2e-70a0d7d500b9_ayd.json index 38bb800..7c3c4e3 100644 --- a/server/src/data/split/3c511e7b-a6db-4839-ae2e-70a0d7d500b9_ayd.json +++ b/server/src/data/split/3c511e7b-a6db-4839-ae2e-70a0d7d500b9_ayd.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "dc9118a76a25738a72dcf65c7b6f6bf0890eeb38", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3c7b7f5e-bdcc-4370-840e-f3312c17d6f4_pythonjiramcpserver.json b/server/src/data/split/3c7b7f5e-bdcc-4370-840e-f3312c17d6f4_pythonjiramcpserver.json index dc8a925..b1a9609 100644 --- a/server/src/data/split/3c7b7f5e-bdcc-4370-840e-f3312c17d6f4_pythonjiramcpserver.json +++ b/server/src/data/split/3c7b7f5e-bdcc-4370-840e-f3312c17d6f4_pythonjiramcpserver.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "953c93fcd6aec0dde19b08c438572dfbc6e44b07", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3c7d15c0-1037-4eb5-ab23-16ca2cd15976_pdfsearch.json b/server/src/data/split/3c7d15c0-1037-4eb5-ab23-16ca2cd15976_pdfsearch.json index bdc6de1..fd8b7f9 100644 --- a/server/src/data/split/3c7d15c0-1037-4eb5-ab23-16ca2cd15976_pdfsearch.json +++ b/server/src/data/split/3c7d15c0-1037-4eb5-ab23-16ca2cd15976_pdfsearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "1d6062da51dbff4872fa1aed01abad7c4561b4d0", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3c7d6efc-555f-4fb2-bc01-41bd87a58b18_xano.json b/server/src/data/split/3c7d6efc-555f-4fb2-bc01-41bd87a58b18_xano.json index 1cc0c54..dccc4a5 100644 --- a/server/src/data/split/3c7d6efc-555f-4fb2-bc01-41bd87a58b18_xano.json +++ b/server/src/data/split/3c7d6efc-555f-4fb2-bc01-41bd87a58b18_xano.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4dc2b14aaae64a4b077e9b0ba3a7dabfff87083a", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3cfb7bb8-1c79-4a09-8258-ac069191efcc_webresearch.json b/server/src/data/split/3cfb7bb8-1c79-4a09-8258-ac069191efcc_webresearch.json index 4b619bf..44dfbe5 100644 --- a/server/src/data/split/3cfb7bb8-1c79-4a09-8258-ac069191efcc_webresearch.json +++ b/server/src/data/split/3cfb7bb8-1c79-4a09-8258-ac069191efcc_webresearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "cf550f3061f611731ee4487b91a9c062f5cfb6aa", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3d682a9d-0669-4e0c-8479-bbe45ec27ecc_discourse.json b/server/src/data/split/3d682a9d-0669-4e0c-8479-bbe45ec27ecc_discourse.json index d39de63..429f995 100644 --- a/server/src/data/split/3d682a9d-0669-4e0c-8479-bbe45ec27ecc_discourse.json +++ b/server/src/data/split/3d682a9d-0669-4e0c-8479-bbe45ec27ecc_discourse.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "AshDevFr", "githubLatestCommit": "982be27eb774584ec9f69909aa1dca124c788c8d", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3d8bba54-5b76-49c4-86b3-25dd73d60c0f_anyopenapi.json b/server/src/data/split/3d8bba54-5b76-49c4-86b3-25dd73d60c0f_anyopenapi.json index 9ea4414..f28eb75 100644 --- a/server/src/data/split/3d8bba54-5b76-49c4-86b3-25dd73d60c0f_anyopenapi.json +++ b/server/src/data/split/3d8bba54-5b76-49c4-86b3-25dd73d60c0f_anyopenapi.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ed452acdd5e3823cb3f41cfaa736297366db95db", - "githubForks": 6, + "githubForks": 7, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3daefc84-4a64-4fa0-8c60-3fa4fff450ce_telegram.json b/server/src/data/split/3daefc84-4a64-4fa0-8c60-3fa4fff450ce_telegram.json index 1b2676f..76a5678 100644 --- a/server/src/data/split/3daefc84-4a64-4fa0-8c60-3fa4fff450ce_telegram.json +++ b/server/src/data/split/3daefc84-4a64-4fa0-8c60-3fa4fff450ce_telegram.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 90, + "githubStars": 94, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-26T07:20:56Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "chigwell", "githubLatestCommit": "e16b41115c7d9a9568fb86d5ba892744d983895e", - "githubForks": 48, + "githubForks": 51, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3dd30175-c8d4-4d2e-9e00-3467885e2a4f_thevergenews.json b/server/src/data/split/3dd30175-c8d4-4d2e-9e00-3467885e2a4f_thevergenews.json index bd3bee1..9f89c6c 100644 --- a/server/src/data/split/3dd30175-c8d4-4d2e-9e00-3467885e2a4f_thevergenews.json +++ b/server/src/data/split/3dd30175-c8d4-4d2e-9e00-3467885e2a4f_thevergenews.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ca2db7406a3d1c0b5d062aceb660240ec5dda5c6", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3de51be1-b629-4283-b7d4-40897d6e2fd1_vilniustransport.json b/server/src/data/split/3de51be1-b629-4283-b7d4-40897d6e2fd1_vilniustransport.json index 3fbe03c..844f72b 100644 --- a/server/src/data/split/3de51be1-b629-4283-b7d4-40897d6e2fd1_vilniustransport.json +++ b/server/src/data/split/3de51be1-b629-4283-b7d4-40897d6e2fd1_vilniustransport.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e712279122d6d6a86b4808710105c0dfb834a204", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3e040855-edc2-4a53-ba1c-14c1b2b50da4_confluencecloud.json b/server/src/data/split/3e040855-edc2-4a53-ba1c-14c1b2b50da4_confluencecloud.json index 4a7e937..ff2c44c 100644 --- a/server/src/data/split/3e040855-edc2-4a53-ba1c-14c1b2b50da4_confluencecloud.json +++ b/server/src/data/split/3e040855-edc2-4a53-ba1c-14c1b2b50da4_confluencecloud.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "39020b5de552dcdb186ce799212df08823e44bcb", - "githubForks": 7, + "githubForks": 8, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3e0e909f-99ff-4115-9eca-914b255d0351_esignatures.json b/server/src/data/split/3e0e909f-99ff-4115-9eca-914b255d0351_esignatures.json index ef94c2c..5419704 100644 --- a/server/src/data/split/3e0e909f-99ff-4115-9eca-914b255d0351_esignatures.json +++ b/server/src/data/split/3e0e909f-99ff-4115-9eca-914b255d0351_esignatures.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "f71cbf10a1a79df9281b818a3fbe59a0fc5eb051", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3e26624b-0138-42be-adda-2cf43f86e894_imessage.json b/server/src/data/split/3e26624b-0138-42be-adda-2cf43f86e894_imessage.json index 24c6385..508c2c5 100644 --- a/server/src/data/split/3e26624b-0138-42be-adda-2cf43f86e894_imessage.json +++ b/server/src/data/split/3e26624b-0138-42be-adda-2cf43f86e894_imessage.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5cb5240688f5a766fef3051fe2bb64df0fef1aea", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3e498ef3-a950-46e3-bfa4-2eac7ae30591_tavilyextract.json b/server/src/data/split/3e498ef3-a950-46e3-bfa4-2eac7ae30591_tavilyextract.json index 461c14e..98a7cdf 100644 --- a/server/src/data/split/3e498ef3-a950-46e3-bfa4-2eac7ae30591_tavilyextract.json +++ b/server/src/data/split/3e498ef3-a950-46e3-bfa4-2eac7ae30591_tavilyextract.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f14d690aec2e2950aa3aee100c990dd3c55b555c", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3e8a54f0-6759-43ec-ace3-1ecb8392383d_lancedb.json b/server/src/data/split/3e8a54f0-6759-43ec-ace3-1ecb8392383d_lancedb.json index 9bd1497..4caaffa 100644 --- a/server/src/data/split/3e8a54f0-6759-43ec-ace3-1ecb8392383d_lancedb.json +++ b/server/src/data/split/3e8a54f0-6759-43ec-ace3-1ecb8392383d_lancedb.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "082c38e2429a8c9074a9a176dd0b1defc84a5ae2", - "githubForks": 8, + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3e9dd46a-a1e2-4946-b4f1-17feae38294b_prometheus.json b/server/src/data/split/3e9dd46a-a1e2-4946-b4f1-17feae38294b_prometheus.json index 366f688..f332f4c 100644 --- a/server/src/data/split/3e9dd46a-a1e2-4946-b4f1-17feae38294b_prometheus.json +++ b/server/src/data/split/3e9dd46a-a1e2-4946-b4f1-17feae38294b_prometheus.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "pab1it0", "githubLatestCommit": "6861e77b14afcd334d52d57fdb8762d9132c996f", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3ef3ff5e-143a-40ad-b6bc-334455823c2c_omniparserautogui.json b/server/src/data/split/3ef3ff5e-143a-40ad-b6bc-334455823c2c_omniparserautogui.json index 2729cdb..6086b55 100644 --- a/server/src/data/split/3ef3ff5e-143a-40ad-b6bc-334455823c2c_omniparserautogui.json +++ b/server/src/data/split/3ef3ff5e-143a-40ad-b6bc-334455823c2c_omniparserautogui.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e35c6bba5715b8f8c79bebc32300c6b3c38f0474", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3f159a79-690f-44db-8e61-31eeaef435b1_klavisreportgen.json b/server/src/data/split/3f159a79-690f-44db-8e61-31eeaef435b1_klavisreportgen.json index 85768e5..e649a8a 100644 --- a/server/src/data/split/3f159a79-690f-44db-8e61-31eeaef435b1_klavisreportgen.json +++ b/server/src/data/split/3f159a79-690f-44db-8e61-31eeaef435b1_klavisreportgen.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 416, + "githubStars": 452, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T23:44:58Z", @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "Klavis-AI", "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", - "githubForks": 74, + "githubForks": 82, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3f280ad9-f6c9-4115-8b10-1f5e34ab334b_naver.json b/server/src/data/split/3f280ad9-f6c9-4115-8b10-1f5e34ab334b_naver.json index 2103758..a399beb 100644 --- a/server/src/data/split/3f280ad9-f6c9-4115-8b10-1f5e34ab334b_naver.json +++ b/server/src/data/split/3f280ad9-f6c9-4115-8b10-1f5e34ab334b_naver.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 88, + "githubStars": 89, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-02T17:10:22Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "pfldy2850", "githubLatestCommit": "bc2952c4f5f37901defa4797baae0ddbd8f3f743", - "githubForks": 11, + "githubForks": 12, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3f3453b7-e3ec-4926-8a64-ead5b0bea1ec_everythinglocalcommands.json b/server/src/data/split/3f3453b7-e3ec-4926-8a64-ead5b0bea1ec_everythinglocalcommands.json index 46c9e11..de17658 100644 --- a/server/src/data/split/3f3453b7-e3ec-4926-8a64-ead5b0bea1ec_everythinglocalcommands.json +++ b/server/src/data/split/3f3453b7-e3ec-4926-8a64-ead5b0bea1ec_everythinglocalcommands.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "221ee09342991f2c04a51608313add2d4afb068e", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3f3c41d5-bae5-4508-9f2a-e7d69cae8f87_instagramanalytics.json b/server/src/data/split/3f3c41d5-bae5-4508-9f2a-e7d69cae8f87_instagramanalytics.json index 2ee936a..4373959 100644 --- a/server/src/data/split/3f3c41d5-bae5-4508-9f2a-e7d69cae8f87_instagramanalytics.json +++ b/server/src/data/split/3f3c41d5-bae5-4508-9f2a-e7d69cae8f87_instagramanalytics.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "49059fd1dc66f5eba8926f1846667821fed23ebc", - "githubForks": 5, + "githubForks": 6, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/3f6fdc9e-ce8e-4b86-9dd0-dd9fdfc28986_createveainexus.json b/server/src/data/split/3f6fdc9e-ce8e-4b86-9dd0-dd9fdfc28986_createveainexus.json index db65f97..0937a30 100644 --- a/server/src/data/split/3f6fdc9e-ce8e-4b86-9dd0-dd9fdfc28986_createveainexus.json +++ b/server/src/data/split/3f6fdc9e-ce8e-4b86-9dd0-dd9fdfc28986_createveainexus.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "spgoodman", "githubLatestCommit": "e491333941c633f7cb21b9ed6ff560a377e7ca01", - "githubForks": 1, + "githubForks": 2, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/3f79e3ed-4e0e-40af-9381-d1ddd7fb7dcc_arangodb.json b/server/src/data/split/3f79e3ed-4e0e-40af-9381-d1ddd7fb7dcc_arangodb.json index d608f82..751d096 100644 --- a/server/src/data/split/3f79e3ed-4e0e-40af-9381-d1ddd7fb7dcc_arangodb.json +++ b/server/src/data/split/3f79e3ed-4e0e-40af-9381-d1ddd7fb7dcc_arangodb.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c0b1ac462c769657d3d8f7fdf2a3aafc492c4efb", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/3fb6ac73-8e55-4cb8-b048-41946e8a93c7_senechalhealth.json b/server/src/data/split/3fb6ac73-8e55-4cb8-b048-41946e8a93c7_senechalhealth.json index c4ea8c5..1489858 100644 --- a/server/src/data/split/3fb6ac73-8e55-4cb8-b048-41946e8a93c7_senechalhealth.json +++ b/server/src/data/split/3fb6ac73-8e55-4cb8-b048-41946e8a93c7_senechalhealth.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f422c6aa123eabd465374d4d1bf3096846a8949d", - "githubForks": 1, + "githubForks": 2, "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/3fd4b8e3-3b5f-4ef6-b741-931dd20316f2_deepresearch.json b/server/src/data/split/3fd4b8e3-3b5f-4ef6-b741-931dd20316f2_deepresearch.json index 73a338a..a0ded37 100644 --- a/server/src/data/split/3fd4b8e3-3b5f-4ef6-b741-931dd20316f2_deepresearch.json +++ b/server/src/data/split/3fd4b8e3-3b5f-4ef6-b741-931dd20316f2_deepresearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "b1b84f9b276643d43ed1d8e36ea0ae21e039a01e", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/404081d5-e23d-49e3-9b17-92274d268f17_mysqlmcp.json b/server/src/data/split/404081d5-e23d-49e3-9b17-92274d268f17_mysqlmcp.json index 304f05b..ca4f0b4 100644 --- a/server/src/data/split/404081d5-e23d-49e3-9b17-92274d268f17_mysqlmcp.json +++ b/server/src/data/split/404081d5-e23d-49e3-9b17-92274d268f17_mysqlmcp.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "7363d3a573a5dd7d71da517cbb6654e44776758c", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/40431ec4-d4e5-4422-a932-8950bc3ff08e_shellcommand.json b/server/src/data/split/40431ec4-d4e5-4422-a932-8950bc3ff08e_shellcommand.json index 362c768..9785928 100644 --- a/server/src/data/split/40431ec4-d4e5-4422-a932-8950bc3ff08e_shellcommand.json +++ b/server/src/data/split/40431ec4-d4e5-4422-a932-8950bc3ff08e_shellcommand.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "3e00026be1864528a17e377be7a8c5d11e9c6f93", - "githubForks": 19, + "githubForks": 20, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/40ae72ec-a091-4607-b854-94f6240fa18d_maton.json b/server/src/data/split/40ae72ec-a091-4607-b854-94f6240fa18d_maton.json index 4a97c68..438fc7d 100644 --- a/server/src/data/split/40ae72ec-a091-4607-b854-94f6240fa18d_maton.json +++ b/server/src/data/split/40ae72ec-a091-4607-b854-94f6240fa18d_maton.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "maton-ai", "githubLatestCommit": "7f9a6050212075767ef83998391119e926a6a829", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/414993a2-fb24-4957-83a3-a237183a5baa_godocumentation.json b/server/src/data/split/414993a2-fb24-4957-83a3-a237183a5baa_godocumentation.json index 3091f59..8e5686e 100644 --- a/server/src/data/split/414993a2-fb24-4957-83a3-a237183a5baa_godocumentation.json +++ b/server/src/data/split/414993a2-fb24-4957-83a3-a237183a5baa_godocumentation.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d21eaafbfef2089a8d0c76ac795481da998eba9c", - "githubForks": 0, + "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/41891a6b-c073-4f7a-864e-e245703e0494_googledrive.json b/server/src/data/split/41891a6b-c073-4f7a-864e-e245703e0494_googledrive.json index 7ca6b62..6730703 100644 --- a/server/src/data/split/41891a6b-c073-4f7a-864e-e245703e0494_googledrive.json +++ b/server/src/data/split/41891a6b-c073-4f7a-864e-e245703e0494_googledrive.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41715, + "githubStars": 42029, "downloadCount": 1791, "createdAt": "2025-02-18T05:45:06.878261Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4574, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/419cc2bf-2ed2-4daa-a8fe-3afc33a088bf_cryptocurrencytechnicalanalysis.json b/server/src/data/split/419cc2bf-2ed2-4daa-a8fe-3afc33a088bf_cryptocurrencytechnicalanalysis.json index 4331027..7ff6d25 100644 --- a/server/src/data/split/419cc2bf-2ed2-4daa-a8fe-3afc33a088bf_cryptocurrencytechnicalanalysis.json +++ b/server/src/data/split/419cc2bf-2ed2-4daa-a8fe-3afc33a088bf_cryptocurrencytechnicalanalysis.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "52ed190fe34ba4f55309ddd06116f3de1686b7d6", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/41cd0fbc-5075-45f7-8ac7-ec238fef669f_gitcodeanalysis.json b/server/src/data/split/41cd0fbc-5075-45f7-8ac7-ec238fef669f_gitcodeanalysis.json index cfb4953..07f003c 100644 --- a/server/src/data/split/41cd0fbc-5075-45f7-8ac7-ec238fef669f_gitcodeanalysis.json +++ b/server/src/data/split/41cd0fbc-5075-45f7-8ac7-ec238fef669f_gitcodeanalysis.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "66572b701652328a08afa6ecbe9ca318985a59fa", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/41f119d0-d544-4bd5-bf65-739564b5d3aa_elasticsearch.json b/server/src/data/split/41f119d0-d544-4bd5-bf65-739564b5d3aa_elasticsearch.json index ec45cf3..0e9e7c5 100644 --- a/server/src/data/split/41f119d0-d544-4bd5-bf65-739564b5d3aa_elasticsearch.json +++ b/server/src/data/split/41f119d0-d544-4bd5-bf65-739564b5d3aa_elasticsearch.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 118, + "githubStars": 120, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T09:55:01Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "cr7258", "githubLatestCommit": "c52e318f53573133e3ef4543dbc185a17b137ad7", - "githubForks": 24, + "githubForks": 25, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/41f34c04-1da2-4013-856f-b65c5c7e43fa_tavilysearch.json b/server/src/data/split/41f34c04-1da2-4013-856f-b65c5c7e43fa_tavilysearch.json index 4284b0f..b626fab 100644 --- a/server/src/data/split/41f34c04-1da2-4013-856f-b65c5c7e43fa_tavilysearch.json +++ b/server/src/data/split/41f34c04-1da2-4013-856f-b65c5c7e43fa_tavilysearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "68b892f8bdabead5078be98c7b776ca3ce1a7f84", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/41f690b3-06cb-47f1-ad86-e9dde43cae4f_atlan.json b/server/src/data/split/41f690b3-06cb-47f1-ad86-e9dde43cae4f_atlan.json index 6bfbec1..71ea5df 100644 --- a/server/src/data/split/41f690b3-06cb-47f1-ad86-e9dde43cae4f_atlan.json +++ b/server/src/data/split/41f690b3-06cb-47f1-ad86-e9dde43cae4f_atlan.json @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "atlanhq", "githubLatestCommit": "8d21ddf2e07ba99e984e800c5f788b047f3949e2", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/420f4543-7c99-4f21-b4c8-f7e7b6c8fbd3_substack.json b/server/src/data/split/420f4543-7c99-4f21-b4c8-f7e7b6c8fbd3_substack.json index fd6db76..3941966 100644 --- a/server/src/data/split/420f4543-7c99-4f21-b4c8-f7e7b6c8fbd3_substack.json +++ b/server/src/data/split/420f4543-7c99-4f21-b4c8-f7e7b6c8fbd3_substack.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ae00208d643603e6b490afa41f98e48021d56b13", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/4236ff54-97eb-42c5-95e6-439b37dd45af_datetime.json b/server/src/data/split/4236ff54-97eb-42c5-95e6-439b37dd45af_datetime.json index a802e49..7508232 100644 --- a/server/src/data/split/4236ff54-97eb-42c5-95e6-439b37dd45af_datetime.json +++ b/server/src/data/split/4236ff54-97eb-42c5-95e6-439b37dd45af_datetime.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8c97d185717b1c78a2401e92443a9442e3c0b255", - "githubForks": 1, + "githubForks": 2, "licenseType": "MPL-2.0" } \ No newline at end of file diff --git a/server/src/data/split/424c12f1-3379-4908-8ddd-f7f0cf8eca9c_mssql.json b/server/src/data/split/424c12f1-3379-4908-8ddd-f7f0cf8eca9c_mssql.json index bc05a6f..cfcf343 100644 --- a/server/src/data/split/424c12f1-3379-4908-8ddd-f7f0cf8eca9c_mssql.json +++ b/server/src/data/split/424c12f1-3379-4908-8ddd-f7f0cf8eca9c_mssql.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4c64e2be50f2b8d383347d2965df3b7e1fe03099", - "githubForks": 7, + "githubForks": 8, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/425fa809-f920-4520-ab1b-600227160b6a_pymol.json b/server/src/data/split/425fa809-f920-4520-ab1b-600227160b6a_pymol.json index be09299..7b84242 100644 --- a/server/src/data/split/425fa809-f920-4520-ab1b-600227160b6a_pymol.json +++ b/server/src/data/split/425fa809-f920-4520-ab1b-600227160b6a_pymol.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8b217953c0108fb883eec93e9fd0e44c21aeefaa", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/427d4d99-e404-4650-991e-7797b89f8e39_websitedownloader.json b/server/src/data/split/427d4d99-e404-4650-991e-7797b89f8e39_websitedownloader.json index 9a88ae4..61201ed 100644 --- a/server/src/data/split/427d4d99-e404-4650-991e-7797b89f8e39_websitedownloader.json +++ b/server/src/data/split/427d4d99-e404-4650-991e-7797b89f8e39_websitedownloader.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 82, + "githubStars": 83, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2024-12-24T20:29:17Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5b399bebad1800ac6df5052b63eaea37117092b6", - "githubForks": 14, + "githubForks": 15, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/42a99065-67fa-499b-b844-8d6c9575792e_deriv.json b/server/src/data/split/42a99065-67fa-499b-b844-8d6c9575792e_deriv.json index 508dc50..66a351b 100644 --- a/server/src/data/split/42a99065-67fa-499b-b844-8d6c9575792e_deriv.json +++ b/server/src/data/split/42a99065-67fa-499b-b844-8d6c9575792e_deriv.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e32842a1908377617a4b52f51eb6cbbcf10086d7", - "githubForks": 1, + "githubForks": 2, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/42d343bc-dace-46bd-9277-4a798065990d_llmtxtdirectory.json b/server/src/data/split/42d343bc-dace-46bd-9277-4a798065990d_llmtxtdirectory.json index 1de6ccb..1da7232 100644 --- a/server/src/data/split/42d343bc-dace-46bd-9277-4a798065990d_llmtxtdirectory.json +++ b/server/src/data/split/42d343bc-dace-46bd-9277-4a798065990d_llmtxtdirectory.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 40, + "githubStars": 41, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2024-12-05T07:13:54Z", diff --git a/server/src/data/split/42db927f-618f-48a8-b8c9-ee90d5f18422_toolhouse.json b/server/src/data/split/42db927f-618f-48a8-b8c9-ee90d5f18422_toolhouse.json index 49f91d7..1e73b15 100644 --- a/server/src/data/split/42db927f-618f-48a8-b8c9-ee90d5f18422_toolhouse.json +++ b/server/src/data/split/42db927f-618f-48a8-b8c9-ee90d5f18422_toolhouse.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d0b2ff098ccb251b1387c45dae6bca45815a022a", - "githubForks": 7, + "githubForks": 8, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4480a6db-1f5d-467b-8350-92d070987124_browserbase.json b/server/src/data/split/4480a6db-1f5d-467b-8350-92d070987124_browserbase.json index 740e9e1..f3695a5 100644 --- a/server/src/data/split/4480a6db-1f5d-467b-8350-92d070987124_browserbase.json +++ b/server/src/data/split/4480a6db-1f5d-467b-8350-92d070987124_browserbase.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 1392, + "githubStars": 1407, "downloadCount": 1374, "createdAt": "2025-02-18T06:27:48.955864Z", "updatedAt": "2025-04-14T03:59:33Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "0fb9286c0c1ad79c757d7ac5213fa8a8e671e1be", - "githubForks": 140, + "githubForks": 141, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/4486f37f-d581-4cfa-be88-833937890b4b_morpho.json b/server/src/data/split/4486f37f-d581-4cfa-be88-833937890b4b_morpho.json index 182453c..9eca828 100644 --- a/server/src/data/split/4486f37f-d581-4cfa-be88-833937890b4b_morpho.json +++ b/server/src/data/split/4486f37f-d581-4cfa-be88-833937890b4b_morpho.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e6202e4c415d82ec15eb7bf80519d2288f434677", - "githubForks": 5, + "githubForks": 6, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/449bae71-9ab1-48fa-b74b-bd9110908684_worldbankdataapi.json b/server/src/data/split/449bae71-9ab1-48fa-b74b-bd9110908684_worldbankdataapi.json index 4d1208c..3cb5c1c 100644 --- a/server/src/data/split/449bae71-9ab1-48fa-b74b-bd9110908684_worldbankdataapi.json +++ b/server/src/data/split/449bae71-9ab1-48fa-b74b-bd9110908684_worldbankdataapi.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 18, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-02-14T11:36:34Z", diff --git a/server/src/data/split/44d8f86f-3db7-492f-bf61-fa65a0c6c0ea_metatradermcp.json b/server/src/data/split/44d8f86f-3db7-492f-bf61-fa65a0c6c0ea_metatradermcp.json index e4313ad..9223e49 100644 --- a/server/src/data/split/44d8f86f-3db7-492f-bf61-fa65a0c6c0ea_metatradermcp.json +++ b/server/src/data/split/44d8f86f-3db7-492f-bf61-fa65a0c6c0ea_metatradermcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 9, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-26T06:17:24Z", diff --git a/server/src/data/split/44eafadb-7f6a-445b-9f36-9ef19f0e8d17_emailsender.json b/server/src/data/split/44eafadb-7f6a-445b-9f36-9ef19f0e8d17_emailsender.json index 819b84c..bf49f91 100644 --- a/server/src/data/split/44eafadb-7f6a-445b-9f36-9ef19f0e8d17_emailsender.json +++ b/server/src/data/split/44eafadb-7f6a-445b-9f36-9ef19f0e8d17_emailsender.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 324, + "githubStars": 325, "downloadCount": 851, "createdAt": "2025-03-03T11:05:30.27228Z", "updatedAt": "2025-04-25T11:43:29Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "1e1e23589c8a3210ad77d74ba99fe584ba1c5e3a", - "githubForks": 37, + "githubForks": 38, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/46dc92b8-4795-4daf-b901-5e9e7e539aac_filesystemquarkus.json b/server/src/data/split/46dc92b8-4795-4daf-b901-5e9e7e539aac_filesystemquarkus.json index c531f7b..a033320 100644 --- a/server/src/data/split/46dc92b8-4795-4daf-b901-5e9e7e539aac_filesystemquarkus.json +++ b/server/src/data/split/46dc92b8-4795-4daf-b901-5e9e7e539aac_filesystemquarkus.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 109, + "githubStars": 111, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-18T09:21:26Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "c7cf4a5ea122938fd9f05fb62928bb011c2759c9", - "githubForks": 28, + "githubForks": 29, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/484e0b3d-ef31-4040-a457-59373f015127_shopify.json b/server/src/data/split/484e0b3d-ef31-4040-a457-59373f015127_shopify.json index 41debbd..3765ec7 100644 --- a/server/src/data/split/484e0b3d-ef31-4040-a457-59373f015127_shopify.json +++ b/server/src/data/split/484e0b3d-ef31-4040-a457-59373f015127_shopify.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 28, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-09T19:34:47Z", diff --git a/server/src/data/split/4862d1c3-e61c-4d8e-89d2-0f75e0c250ca_authenticatedcloudrun.json b/server/src/data/split/4862d1c3-e61c-4d8e-89d2-0f75e0c250ca_authenticatedcloudrun.json index 4f1c896..4b763d7 100644 --- a/server/src/data/split/4862d1c3-e61c-4d8e-89d2-0f75e0c250ca_authenticatedcloudrun.json +++ b/server/src/data/split/4862d1c3-e61c-4d8e-89d2-0f75e0c250ca_authenticatedcloudrun.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "feee93239bc70370d4415feb0b5125fbea174ab6", - "githubForks": 1, + "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/48eaaefb-5603-4d2e-8e00-cda31d809873_excel.json b/server/src/data/split/48eaaefb-5603-4d2e-8e00-cda31d809873_excel.json index 361ddae..bbebbd7 100644 --- a/server/src/data/split/48eaaefb-5603-4d2e-8e00-cda31d809873_excel.json +++ b/server/src/data/split/48eaaefb-5603-4d2e-8e00-cda31d809873_excel.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 138, + "githubStars": 142, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2025-04-26T05:04:59Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "932808acfd1d8765a4451fc49bb373b3856efd06", - "githubForks": 15, + "githubForks": 16, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4987592e-dc8b-418f-b378-5c36ca671725_cloudfoundryhoover.json b/server/src/data/split/4987592e-dc8b-418f-b378-5c36ca671725_cloudfoundryhoover.json index 1ea0c49..6a81535 100644 --- a/server/src/data/split/4987592e-dc8b-418f-b378-5c36ca671725_cloudfoundryhoover.json +++ b/server/src/data/split/4987592e-dc8b-418f-b378-5c36ca671725_cloudfoundryhoover.json @@ -19,12 +19,12 @@ "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-04-14T13:56:05Z", + "updatedAt": "2025-04-28T11:56:34Z", "hubId": "4987592e-dc8b-418f-b378-5c36ca671725", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "5c2891b0e2854795f72d6d256559e443e6644e84", + "githubLatestCommit": "a5135b1daa06554380d65233f63eefa2c6cfaa05", "githubForks": 1, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/49f67f39-11c4-4fa4-a99a-500ed1f6bb71_perplexity.json b/server/src/data/split/49f67f39-11c4-4fa4-a99a-500ed1f6bb71_perplexity.json index 6e45f28..254a211 100644 --- a/server/src/data/split/49f67f39-11c4-4fa4-a99a-500ed1f6bb71_perplexity.json +++ b/server/src/data/split/49f67f39-11c4-4fa4-a99a-500ed1f6bb71_perplexity.json @@ -22,6 +22,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "279511556654b67ec76eda2a90a5d2395a01dcc6", - "githubForks": 9, + "githubForks": 10, "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/4a69ad6c-8a46-40c3-b809-fa8957f148f1_excelreader.json b/server/src/data/split/4a69ad6c-8a46-40c3-b809-fa8957f148f1_excelreader.json index 1408862..06a7885 100644 --- a/server/src/data/split/4a69ad6c-8a46-40c3-b809-fa8957f148f1_excelreader.json +++ b/server/src/data/split/4a69ad6c-8a46-40c3-b809-fa8957f148f1_excelreader.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", "updatedAt": "2025-04-02T05:59:17Z", diff --git a/server/src/data/split/4a7ead8b-08b3-4f8d-b2c3-045b78bade89_flightradar24.json b/server/src/data/split/4a7ead8b-08b3-4f8d-b2c3-045b78bade89_flightradar24.json index 74a8494..9edda02 100644 --- a/server/src/data/split/4a7ead8b-08b3-4f8d-b2c3-045b78bade89_flightradar24.json +++ b/server/src/data/split/4a7ead8b-08b3-4f8d-b2c3-045b78bade89_flightradar24.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 25, + "githubStars": 26, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-01-29T15:17:02Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "97d3e99614605c5fb21005d0ebaf93847cdde829", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4ad6f6f6-fd00-44eb-bfd6-f98d81f94067_frontendreview.json b/server/src/data/split/4ad6f6f6-fd00-44eb-bfd6-f98d81f94067_frontendreview.json index 13501e4..3b32ca3 100644 --- a/server/src/data/split/4ad6f6f6-fd00-44eb-bfd6-f98d81f94067_frontendreview.json +++ b/server/src/data/split/4ad6f6f6-fd00-44eb-bfd6-f98d81f94067_frontendreview.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "da45610e5c0069fc364974d0203512f4eed71e5a", - "githubForks": 8, + "githubForks": 9, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/4b1fad32-5afd-4fbe-848d-73b7cba9b08d_gcp.json b/server/src/data/split/4b1fad32-5afd-4fbe-848d-73b7cba9b08d_gcp.json index 6b0d7a1..72760b1 100644 --- a/server/src/data/split/4b1fad32-5afd-4fbe-848d-73b7cba9b08d_gcp.json +++ b/server/src/data/split/4b1fad32-5afd-4fbe-848d-73b7cba9b08d_gcp.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 55, + "githubStars": 57, "downloadCount": 0, "createdAt": "2025-03-14T12:24:22.941718+00:00", "updatedAt": "2025-03-05T18:03:55Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "37c82afc8ccd81c47d37a1ccaf7360927726a596", - "githubForks": 6, + "githubForks": 8, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4b6a3555-a0e1-4261-a7ed-b59f48531db5_mcpweather.json b/server/src/data/split/4b6a3555-a0e1-4261-a7ed-b59f48531db5_mcpweather.json index 9a4378f..050648f 100644 --- a/server/src/data/split/4b6a3555-a0e1-4261-a7ed-b59f48531db5_mcpweather.json +++ b/server/src/data/split/4b6a3555-a0e1-4261-a7ed-b59f48531db5_mcpweather.json @@ -12,13 +12,13 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T07:53:08Z", + "updatedAt": "2025-04-28T11:44:12Z", "hubId": "4b6a3555-a0e1-4261-a7ed-b59f48531db5", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "isdaniel", - "githubLatestCommit": "a5c46408e35629814f566ba3eb1d1db4ea09028a", + "githubLatestCommit": "fd9c8d3dd2915b851cf40405b611e7a5b9f2d704", "githubForks": 0, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/4b8131d5-4076-454b-932b-4c8d7207eb3c_academicpapersearch.json b/server/src/data/split/4b8131d5-4076-454b-932b-4c8d7207eb3c_academicpapersearch.json index dfdd895..352d618 100644 --- a/server/src/data/split/4b8131d5-4076-454b-932b-4c8d7207eb3c_academicpapersearch.json +++ b/server/src/data/split/4b8131d5-4076-454b-932b-4c8d7207eb3c_academicpapersearch.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f457e444b2398aad39d1ef7f0ceed06748c177a4", - "githubForks": 1, + "githubForks": 2, "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/4b8d2215-d00f-40e2-9381-2561d4b3e3a0_xcode.json b/server/src/data/split/4b8d2215-d00f-40e2-9381-2561d4b3e3a0_xcode.json index b13aa2a..258f62f 100644 --- a/server/src/data/split/4b8d2215-d00f-40e2-9381-2561d4b3e3a0_xcode.json +++ b/server/src/data/split/4b8d2215-d00f-40e2-9381-2561d4b3e3a0_xcode.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 197, + "githubStars": 200, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-17T11:07:00Z", diff --git a/server/src/data/split/4cf227e6-6c1e-49fd-b24c-e229ed7b378b_playwright.json b/server/src/data/split/4cf227e6-6c1e-49fd-b24c-e229ed7b378b_playwright.json index 2167cc8..4b7fbcf 100644 --- a/server/src/data/split/4cf227e6-6c1e-49fd-b24c-e229ed7b378b_playwright.json +++ b/server/src/data/split/4cf227e6-6c1e-49fd-b24c-e229ed7b378b_playwright.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 164, + "githubStars": 167, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-01-26T09:22:58Z", diff --git a/server/src/data/split/4d4b4fd9-30e3-4300-895a-439019b91f73_linear.json b/server/src/data/split/4d4b4fd9-30e3-4300-895a-439019b91f73_linear.json index 266ce5d..560e6e4 100644 --- a/server/src/data/split/4d4b4fd9-30e3-4300-895a-439019b91f73_linear.json +++ b/server/src/data/split/4d4b4fd9-30e3-4300-895a-439019b91f73_linear.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 280, + "githubStars": 281, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-02-17T21:46:00Z", diff --git a/server/src/data/split/4e16246e-fb52-40ab-a014-32de572b72f3_algorand.json b/server/src/data/split/4e16246e-fb52-40ab-a014-32de572b72f3_algorand.json index 8053210..700eff1 100644 --- a/server/src/data/split/4e16246e-fb52-40ab-a014-32de572b72f3_algorand.json +++ b/server/src/data/split/4e16246e-fb52-40ab-a014-32de572b72f3_algorand.json @@ -12,13 +12,13 @@ "githubStars": 27, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-24T08:28:30Z", + "updatedAt": "2025-04-28T15:43:04Z", "hubId": "4e16246e-fb52-40ab-a014-32de572b72f3", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "GoPlausible", - "githubLatestCommit": "e90421d56dce17bb3a47d59f110b84477f98e082", + "githubLatestCommit": "681573df60c5e1796dd96d965cc8fbbd6da06290", "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4e738899-f0e7-46c2-9fe4-bfbaa6fe6918_browsertools.json b/server/src/data/split/4e738899-f0e7-46c2-9fe4-bfbaa6fe6918_browsertools.json index ea556c4..d8286e6 100644 --- a/server/src/data/split/4e738899-f0e7-46c2-9fe4-bfbaa6fe6918_browsertools.json +++ b/server/src/data/split/4e738899-f0e7-46c2-9fe4-bfbaa6fe6918_browsertools.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3764, + "githubStars": 3789, "downloadCount": 23328, "createdAt": "2025-03-11T02:29:39.738183Z", "updatedAt": "2025-03-26T12:40:13Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "0befce357f2421e928f2a19ee09ab502080a35a5", - "githubForks": 292, + "githubForks": 293, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4e768806-17f9-4afd-8fd6-28acbce01083_agentql.json b/server/src/data/split/4e768806-17f9-4afd-8fd6-28acbce01083_agentql.json index db131b9..63d8fed 100644 --- a/server/src/data/split/4e768806-17f9-4afd-8fd6-28acbce01083_agentql.json +++ b/server/src/data/split/4e768806-17f9-4afd-8fd6-28acbce01083_agentql.json @@ -12,13 +12,13 @@ "githubStars": 55, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-21T23:10:13Z", + "updatedAt": "2025-04-28T22:55:51Z", "hubId": "4e768806-17f9-4afd-8fd6-28acbce01083", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "tinyfish-io", - "githubLatestCommit": "cb7f2e485d3bb96b82800fd23db9aa7e3df12bc2", + "githubLatestCommit": "332b66e93d50c629d1dedc1e2b856b4dc2b9e1bd", "githubForks": 11, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/4f1c12b9-91c0-4f76-95a6-1e479579fad6_reactdevelopmentassistant.json b/server/src/data/split/4f1c12b9-91c0-4f76-95a6-1e479579fad6_reactdevelopmentassistant.json index fe44ede..ae6be4a 100644 --- a/server/src/data/split/4f1c12b9-91c0-4f76-95a6-1e479579fad6_reactdevelopmentassistant.json +++ b/server/src/data/split/4f1c12b9-91c0-4f76-95a6-1e479579fad6_reactdevelopmentassistant.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 13, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", "updatedAt": "2025-03-29T13:31:54Z", diff --git a/server/src/data/split/500b1fc6-08bf-44e2-858c-bec546c5ccc8_ragrabbit.json b/server/src/data/split/500b1fc6-08bf-44e2-858c-bec546c5ccc8_ragrabbit.json index 27756f9..174e391 100644 --- a/server/src/data/split/500b1fc6-08bf-44e2-858c-bec546c5ccc8_ragrabbit.json +++ b/server/src/data/split/500b1fc6-08bf-44e2-858c-bec546c5ccc8_ragrabbit.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 85, + "githubStars": 87, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", "updatedAt": "2025-03-23T09:41:21Z", diff --git a/server/src/data/split/505d73bb-195c-4a2c-b152-ac1dfc0e54f9_mcpdbutils.json b/server/src/data/split/505d73bb-195c-4a2c-b152-ac1dfc0e54f9_mcpdbutils.json index 12bc02d..ca47da5 100644 --- a/server/src/data/split/505d73bb-195c-4a2c-b152-ac1dfc0e54f9_mcpdbutils.json +++ b/server/src/data/split/505d73bb-195c-4a2c-b152-ac1dfc0e54f9_mcpdbutils.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 61, + "githubStars": 62, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2025-04-25T23:18:04Z", diff --git a/server/src/data/split/506d99fd-4932-4fd0-83d9-c84522968a6f_n8n.json b/server/src/data/split/506d99fd-4932-4fd0-83d9-c84522968a6f_n8n.json index 8df707d..60fb0b2 100644 --- a/server/src/data/split/506d99fd-4932-4fd0-83d9-c84522968a6f_n8n.json +++ b/server/src/data/split/506d99fd-4932-4fd0-83d9-c84522968a6f_n8n.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 198, + "githubStars": 199, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-31T09:31:15Z", diff --git a/server/src/data/split/512811f4-534d-41a2-9120-a47eaea87393_xtwitter.json b/server/src/data/split/512811f4-534d-41a2-9120-a47eaea87393_xtwitter.json index f70f61c..d9efba8 100644 --- a/server/src/data/split/512811f4-534d-41a2-9120-a47eaea87393_xtwitter.json +++ b/server/src/data/split/512811f4-534d-41a2-9120-a47eaea87393_xtwitter.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "vidhupv", "githubLatestCommit": "4d58b04d5a1f90525083cd2459f27aa804ef6ea5", - "githubForks": 14, + "githubForks": 15, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/512b369e-fa49-43bf-95a3-d4c7faab6cc4_sqlite.json b/server/src/data/split/512b369e-fa49-43bf-95a3-d4c7faab6cc4_sqlite.json index acb15c9..65f99c1 100644 --- a/server/src/data/split/512b369e-fa49-43bf-95a3-d4c7faab6cc4_sqlite.json +++ b/server/src/data/split/512b369e-fa49-43bf-95a3-d4c7faab6cc4_sqlite.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42037, "downloadCount": 3715, "createdAt": "2025-02-18T05:45:28.005191Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/514cf951-23d5-4f44-9867-c830c60b4e23_sshrailsrunner.json b/server/src/data/split/514cf951-23d5-4f44-9867-c830c60b4e23_sshrailsrunner.json index a78ee0f..e041005 100644 --- a/server/src/data/split/514cf951-23d5-4f44-9867-c830c60b4e23_sshrailsrunner.json +++ b/server/src/data/split/514cf951-23d5-4f44-9867-c830c60b4e23_sshrailsrunner.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "43e2af328a4580589df4615cdd33cda2676f87f2", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/51d7114a-e8f8-4305-8062-28836d87c411_stockanalyzertingo.json b/server/src/data/split/51d7114a-e8f8-4305-8062-28836d87c411_stockanalyzertingo.json index bd5152f..974b3a3 100644 --- a/server/src/data/split/51d7114a-e8f8-4305-8062-28836d87c411_stockanalyzertingo.json +++ b/server/src/data/split/51d7114a-e8f8-4305-8062-28836d87c411_stockanalyzertingo.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 85, + "githubStars": 86, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-03-07T22:17:13Z", diff --git a/server/src/data/split/5271f885-5cde-468d-8696-bab8c2115aaf_firecrawl.json b/server/src/data/split/5271f885-5cde-468d-8696-bab8c2115aaf_firecrawl.json index aab8dd7..68da645 100644 --- a/server/src/data/split/5271f885-5cde-468d-8696-bab8c2115aaf_firecrawl.json +++ b/server/src/data/split/5271f885-5cde-468d-8696-bab8c2115aaf_firecrawl.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2812, + "githubStars": 2835, "downloadCount": 10218, "createdAt": "2025-02-21T18:35:28.390028Z", "updatedAt": "2025-04-24T22:57:56Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "d56bcdd4050645a18fd82e5e5053af1451b71e10", - "githubForks": 258, + "githubForks": 259, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/52ae1ff3-34ad-4835-b85f-849ea90ce96d_cryptopanic.json b/server/src/data/split/52ae1ff3-34ad-4835-b85f-849ea90ce96d_cryptopanic.json index 067349f..be81720 100644 --- a/server/src/data/split/52ae1ff3-34ad-4835-b85f-849ea90ce96d_cryptopanic.json +++ b/server/src/data/split/52ae1ff3-34ad-4835-b85f-849ea90ce96d_cryptopanic.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 24, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", "updatedAt": "2025-04-17T12:59:20Z", diff --git a/server/src/data/split/533a0193-26ef-4893-ac32-241035052bc5_dynamicmcpservercreator.json b/server/src/data/split/533a0193-26ef-4893-ac32-241035052bc5_dynamicmcpservercreator.json index 5578dc6..b97f89b 100644 --- a/server/src/data/split/533a0193-26ef-4893-ac32-241035052bc5_dynamicmcpservercreator.json +++ b/server/src/data/split/533a0193-26ef-4893-ac32-241035052bc5_dynamicmcpservercreator.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "323d9175198dfa50b60938fb6e802fa94b3e5bef", - "githubForks": 8, + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/535b432c-4104-405f-ab82-bca44c030375_notion.json b/server/src/data/split/535b432c-4104-405f-ab82-bca44c030375_notion.json index f8e2bfe..8fa2b13 100644 --- a/server/src/data/split/535b432c-4104-405f-ab82-bca44c030375_notion.json +++ b/server/src/data/split/535b432c-4104-405f-ab82-bca44c030375_notion.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 669, + "githubStars": 671, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-11T11:28:50Z", diff --git a/server/src/data/split/5386417e-e34a-4299-aaec-adafdbdcfb84_search1api.json b/server/src/data/split/5386417e-e34a-4299-aaec-adafdbdcfb84_search1api.json index 51fbc14..f8201b6 100644 --- a/server/src/data/split/5386417e-e34a-4299-aaec-adafdbdcfb84_search1api.json +++ b/server/src/data/split/5386417e-e34a-4299-aaec-adafdbdcfb84_search1api.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "0ab32d5919aea0a6d9925b1a0a63373916fb7b9f", - "githubForks": 26, + "githubForks": 25, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/53cc4de8-1f33-48a9-8761-4c3a45681919_microsoftteams.json b/server/src/data/split/53cc4de8-1f33-48a9-8761-4c3a45681919_microsoftteams.json index a286ca5..33faa55 100644 --- a/server/src/data/split/53cc4de8-1f33-48a9-8761-4c3a45681919_microsoftteams.json +++ b/server/src/data/split/53cc4de8-1f33-48a9-8761-4c3a45681919_microsoftteams.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 80, + "githubStars": 81, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T10:22:34Z", diff --git a/server/src/data/split/5403c2c3-bf07-4b3e-b5cf-e3f268a17034_dicom.json b/server/src/data/split/5403c2c3-bf07-4b3e-b5cf-e3f268a17034_dicom.json index 9a84558..0307361 100644 --- a/server/src/data/split/5403c2c3-bf07-4b3e-b5cf-e3f268a17034_dicom.json +++ b/server/src/data/split/5403c2c3-bf07-4b3e-b5cf-e3f268a17034_dicom.json @@ -12,13 +12,13 @@ "githubStars": 28, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-25T17:39:58Z", + "updatedAt": "2025-04-28T11:19:48Z", "hubId": "5403c2c3-bf07-4b3e-b5cf-e3f268a17034", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "ChristianHinge", - "githubLatestCommit": "a1e0edb241c7319a4b2779fe4c8eaa00ef99ade6", + "githubLatestCommit": "1bc07c77cddb94ebaca922b9d77778b79e2b9bd9", "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/5505ff59-7888-4ec6-9e00-ea40e1908d1a_alpacatrading.json b/server/src/data/split/5505ff59-7888-4ec6-9e00-ea40e1908d1a_alpacatrading.json index dbb9049..af9b98f 100644 --- a/server/src/data/split/5505ff59-7888-4ec6-9e00-ea40e1908d1a_alpacatrading.json +++ b/server/src/data/split/5505ff59-7888-4ec6-9e00-ea40e1908d1a_alpacatrading.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 11, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", "updatedAt": "2025-03-04T18:59:45Z", diff --git a/server/src/data/split/55fe7dd0-244f-496e-a8fd-a7c7bd8c8d86_notion.json b/server/src/data/split/55fe7dd0-244f-496e-a8fd-a7c7bd8c8d86_notion.json index 9a95f20..afa6cdd 100644 --- a/server/src/data/split/55fe7dd0-244f-496e-a8fd-a7c7bd8c8d86_notion.json +++ b/server/src/data/split/55fe7dd0-244f-496e-a8fd-a7c7bd8c8d86_notion.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "a47ddb092163b2ac0bcb1afcfce4e899342f8f79", - "githubForks": 11, + "githubForks": 12, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/57633ed7-a366-4e47-b6fa-aca834530f8a_openapiproxy.json b/server/src/data/split/57633ed7-a366-4e47-b6fa-aca834530f8a_openapiproxy.json index efac860..4bc3fdb 100644 --- a/server/src/data/split/57633ed7-a366-4e47-b6fa-aca834530f8a_openapiproxy.json +++ b/server/src/data/split/57633ed7-a366-4e47-b6fa-aca834530f8a_openapiproxy.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 551, + "githubStars": 554, "downloadCount": 359, "createdAt": "2025-02-17T22:45:43.055912Z", "updatedAt": "2025-04-18T16:15:06Z", diff --git a/server/src/data/split/57c78f6b-d27d-4a74-85b7-19d6beaf75dd_codingfilecontext.json b/server/src/data/split/57c78f6b-d27d-4a74-85b7-19d6beaf75dd_codingfilecontext.json index 0e5d51d..7981238 100644 --- a/server/src/data/split/57c78f6b-d27d-4a74-85b7-19d6beaf75dd_codingfilecontext.json +++ b/server/src/data/split/57c78f6b-d27d-4a74-85b7-19d6beaf75dd_codingfilecontext.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 9, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", "updatedAt": "2025-04-16T16:44:30Z", diff --git a/server/src/data/split/58218f39-f32a-4074-b2ce-70d4a80920e0_awesomecursor.json b/server/src/data/split/58218f39-f32a-4074-b2ce-70d4a80920e0_awesomecursor.json index b1e1750..4abf147 100644 --- a/server/src/data/split/58218f39-f32a-4074-b2ce-70d4a80920e0_awesomecursor.json +++ b/server/src/data/split/58218f39-f32a-4074-b2ce-70d4a80920e0_awesomecursor.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 292, + "githubStars": 296, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-02-05T21:41:57Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "90f5809117fc8f392b8bc966fb240e83878b2145", - "githubForks": 85, + "githubForks": 88, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/59132fbe-24b0-4a67-823e-6b717afeb82a_strava.json b/server/src/data/split/59132fbe-24b0-4a67-823e-6b717afeb82a_strava.json index ae43dcf..cca530c 100644 --- a/server/src/data/split/59132fbe-24b0-4a67-823e-6b717afeb82a_strava.json +++ b/server/src/data/split/59132fbe-24b0-4a67-823e-6b717afeb82a_strava.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 19, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-16T16:28:37Z", diff --git a/server/src/data/split/599a20b8-5b69-492a-9379-3d95b88d3028_deepresearch.json b/server/src/data/split/599a20b8-5b69-492a-9379-3d95b88d3028_deepresearch.json index 8114d99..503bd09 100644 --- a/server/src/data/split/599a20b8-5b69-492a-9379-3d95b88d3028_deepresearch.json +++ b/server/src/data/split/599a20b8-5b69-492a-9379-3d95b88d3028_deepresearch.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 48, + "githubStars": 51, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-25T15:50:11Z", diff --git a/server/src/data/split/5da65c9d-e19f-49d8-a733-5fcb20f70b31_box.json b/server/src/data/split/5da65c9d-e19f-49d8-a733-5fcb20f70b31_box.json index cfd51db..bc43fcb 100644 --- a/server/src/data/split/5da65c9d-e19f-49d8-a733-5fcb20f70b31_box.json +++ b/server/src/data/split/5da65c9d-e19f-49d8-a733-5fcb20f70b31_box.json @@ -12,13 +12,13 @@ "githubStars": 17, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-15T14:42:06Z", + "updatedAt": "2025-04-28T20:03:27Z", "hubId": "5da65c9d-e19f-49d8-a733-5fcb20f70b31", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "box-community", - "githubLatestCommit": "08536fb55ee06a00b004ca04fffaae9253d57e2b", + "githubLatestCommit": "94cfe383d11b254ff941d0f32f648dcd4c1359a8", "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/5e299db3-c320-47be-8ba8-2e2d4d8c617d_elevenlabs.json b/server/src/data/split/5e299db3-c320-47be-8ba8-2e2d4d8c617d_elevenlabs.json index 958ca0a..9f00077 100644 --- a/server/src/data/split/5e299db3-c320-47be-8ba8-2e2d4d8c617d_elevenlabs.json +++ b/server/src/data/split/5e299db3-c320-47be-8ba8-2e2d4d8c617d_elevenlabs.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 75, + "githubStars": 76, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-01-07T23:12:09Z", diff --git a/server/src/data/split/5e46711f-d952-48a3-8983-78d67cbce37f_webresearch.json b/server/src/data/split/5e46711f-d952-48a3-8983-78d67cbce37f_webresearch.json index 9bafdfd..33f5ea1 100644 --- a/server/src/data/split/5e46711f-d952-48a3-8983-78d67cbce37f_webresearch.json +++ b/server/src/data/split/5e46711f-d952-48a3-8983-78d67cbce37f_webresearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 239, + "githubStars": 241, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2024-12-18T03:38:25Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5be90e90070ff49dcf3434efccf816b366d374ba", - "githubForks": 48, + "githubForks": 49, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/5e84df1d-ce5a-4b76-8e50-4f79bc00d9f0_flowise.json b/server/src/data/split/5e84df1d-ce5a-4b76-8e50-4f79bc00d9f0_flowise.json index f24ce0f..b485bed 100644 --- a/server/src/data/split/5e84df1d-ce5a-4b76-8e50-4f79bc00d9f0_flowise.json +++ b/server/src/data/split/5e84df1d-ce5a-4b76-8e50-4f79bc00d9f0_flowise.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "1831f172e76bbad93b439c5c45808afe093b40ac", - "githubForks": 8, + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/5ea89948-f145-4cea-8baa-cccd3b1777b8_cursormcpinstallermcp.json b/server/src/data/split/5ea89948-f145-4cea-8baa-cccd3b1777b8_cursormcpinstallermcp.json index 2d2e014..ff89094 100644 --- a/server/src/data/split/5ea89948-f145-4cea-8baa-cccd3b1777b8_cursormcpinstallermcp.json +++ b/server/src/data/split/5ea89948-f145-4cea-8baa-cccd3b1777b8_cursormcpinstallermcp.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 39, + "githubStars": 40, "downloadCount": 0, "createdAt": "2025-03-20T03:17:48.441778+00:00", "updatedAt": "2025-03-30T01:20:29Z", diff --git a/server/src/data/split/6110f6f5-d1f7-4cb8-be29-516cfe8c6938_fastmcp.json b/server/src/data/split/6110f6f5-d1f7-4cb8-be29-516cfe8c6938_fastmcp.json index 7a09349..23d6396 100644 --- a/server/src/data/split/6110f6f5-d1f7-4cb8-be29-516cfe8c6938_fastmcp.json +++ b/server/src/data/split/6110f6f5-d1f7-4cb8-be29-516cfe8c6938_fastmcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1354, + "githubStars": 1371, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T22:50:36Z", diff --git a/server/src/data/split/61218e2b-bfb5-4e3b-89d0-8a85dd576470_findflightsduffel.json b/server/src/data/split/61218e2b-bfb5-4e3b-89d0-8a85dd576470_findflightsduffel.json index e500daf..07f72ba 100644 --- a/server/src/data/split/61218e2b-bfb5-4e3b-89d0-8a85dd576470_findflightsduffel.json +++ b/server/src/data/split/61218e2b-bfb5-4e3b-89d0-8a85dd576470_findflightsduffel.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 71, + "githubStars": 72, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-19T16:13:18Z", diff --git a/server/src/data/split/6131e983-96e3-4bb7-b2e9-2e39f347ac9f_uploadfile.json b/server/src/data/split/6131e983-96e3-4bb7-b2e9-2e39f347ac9f_uploadfile.json index 767846a..e05c58f 100644 --- a/server/src/data/split/6131e983-96e3-4bb7-b2e9-2e39f347ac9f_uploadfile.json +++ b/server/src/data/split/6131e983-96e3-4bb7-b2e9-2e39f347ac9f_uploadfile.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", "updatedAt": "2025-03-18T02:51:04Z", diff --git a/server/src/data/split/62d9832d-e102-4f98-9afb-1677ddb96809_dbhub.json b/server/src/data/split/62d9832d-e102-4f98-9afb-1677ddb96809_dbhub.json index 33ab48e..2cb169b 100644 --- a/server/src/data/split/62d9832d-e102-4f98-9afb-1677ddb96809_dbhub.json +++ b/server/src/data/split/62d9832d-e102-4f98-9afb-1677ddb96809_dbhub.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 331, + "githubStars": 342, "downloadCount": 0, "createdAt": "2025-03-16T16:11:58.135874+00:00", "updatedAt": "2025-04-27T07:32:49Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5e6c344ffaaa4238844dfd6ae3ec248530778437", - "githubForks": 38, + "githubForks": 40, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/6300b4bf-4d1b-47df-a62e-4523f8a05ecc_searxng.json b/server/src/data/split/6300b4bf-4d1b-47df-a62e-4523f8a05ecc_searxng.json index b78cf9a..18d036e 100644 --- a/server/src/data/split/6300b4bf-4d1b-47df-a62e-4523f8a05ecc_searxng.json +++ b/server/src/data/split/6300b4bf-4d1b-47df-a62e-4523f8a05ecc_searxng.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 71, + "githubStars": 72, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-04-22T16:23:34Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "bf1a350726b76488f53a96255571f1fec5512f7f", - "githubForks": 12, + "githubForks": 11, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/6347f02c-26ec-4b7a-ae7b-04565d8b3c78_iflytekworkflow.json b/server/src/data/split/6347f02c-26ec-4b7a-ae7b-04565d8b3c78_iflytekworkflow.json index c3351e6..3599334 100644 --- a/server/src/data/split/6347f02c-26ec-4b7a-ae7b-04565d8b3c78_iflytekworkflow.json +++ b/server/src/data/split/6347f02c-26ec-4b7a-ae7b-04565d8b3c78_iflytekworkflow.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 24, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-28T02:09:36Z", diff --git a/server/src/data/split/64ba8733-1da5-4b71-82d5-f47724b4d38a_supabase.json b/server/src/data/split/64ba8733-1da5-4b71-82d5-f47724b4d38a_supabase.json index 00c6e6a..1b45c49 100644 --- a/server/src/data/split/64ba8733-1da5-4b71-82d5-f47724b4d38a_supabase.json +++ b/server/src/data/split/64ba8733-1da5-4b71-82d5-f47724b4d38a_supabase.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 675, + "githubStars": 677, "downloadCount": 5748, "createdAt": "2025-02-19T00:44:50.26296Z", "updatedAt": "2025-04-17T07:18:38Z", diff --git a/server/src/data/split/650bb8b2-6dc2-4569-8408-4c7724bc1613_firecrawl.json b/server/src/data/split/650bb8b2-6dc2-4569-8408-4c7724bc1613_firecrawl.json index 2244551..146f291 100644 --- a/server/src/data/split/650bb8b2-6dc2-4569-8408-4c7724bc1613_firecrawl.json +++ b/server/src/data/split/650bb8b2-6dc2-4569-8408-4c7724bc1613_firecrawl.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 2812, + "githubStars": 2835, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T22:57:56Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "mendableai", "githubLatestCommit": "d56bcdd4050645a18fd82e5e5053af1451b71e10", - "githubForks": 258, + "githubForks": 259, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/656e3c4c-3a09-45fc-8b0c-0798259ddaac_chesscom.json b/server/src/data/split/656e3c4c-3a09-45fc-8b0c-0798259ddaac_chesscom.json index 59ea4a8..6660556 100644 --- a/server/src/data/split/656e3c4c-3a09-45fc-8b0c-0798259ddaac_chesscom.json +++ b/server/src/data/split/656e3c4c-3a09-45fc-8b0c-0798259ddaac_chesscom.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 29, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-31T11:40:43Z", diff --git a/server/src/data/split/6610f17d-adbf-401b-93c4-b7124e16eea2_fileformatconverterpandoc.json b/server/src/data/split/6610f17d-adbf-401b-93c4-b7124e16eea2_fileformatconverterpandoc.json index 4e87ead..489100a 100644 --- a/server/src/data/split/6610f17d-adbf-401b-93c4-b7124e16eea2_fileformatconverterpandoc.json +++ b/server/src/data/split/6610f17d-adbf-401b-93c4-b7124e16eea2_fileformatconverterpandoc.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 178, + "githubStars": 180, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2024-12-29T20:50:55Z", diff --git a/server/src/data/split/6772cafd-fdc0-42ad-a3ce-fc8cd0f426b4_graphlit.json b/server/src/data/split/6772cafd-fdc0-42ad-a3ce-fc8cd0f426b4_graphlit.json index fbb10a9..2597d4a 100644 --- a/server/src/data/split/6772cafd-fdc0-42ad-a3ce-fc8cd0f426b4_graphlit.json +++ b/server/src/data/split/6772cafd-fdc0-42ad-a3ce-fc8cd0f426b4_graphlit.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 226, + "githubStars": 230, "downloadCount": 1169, "createdAt": "2025-03-03T19:20:12.867689Z", - "updatedAt": "2025-04-27T05:48:11Z", + "updatedAt": "2025-04-29T05:14:55Z", "hubId": "6772cafd-fdc0-42ad-a3ce-fc8cd0f426b4", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "0e4dc6e6a0fc79dedb1250098f02af48178b5b87", + "githubLatestCommit": "739522a297fce5745f5a0daa3383cd582341ca5a", "githubForks": 25, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/67842a54-c9d7-42be-a4f8-470b73d88c24_allinone.json b/server/src/data/split/67842a54-c9d7-42be-a4f8-470b73d88c24_allinone.json index 9fd1b02..f1ea856 100644 --- a/server/src/data/split/67842a54-c9d7-42be-a4f8-470b73d88c24_allinone.json +++ b/server/src/data/split/67842a54-c9d7-42be-a4f8-470b73d88c24_allinone.json @@ -19,12 +19,12 @@ "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-04-02T11:45:13Z", + "updatedAt": "2025-04-29T04:30:06Z", "hubId": "67842a54-c9d7-42be-a4f8-470b73d88c24", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "8bdf78e403bfb92da0ec4732e76bf4fed0af83fb", + "githubLatestCommit": "40eebc1731031754594c3b53819b8a657ac2efc2", "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/67c083d7-1d13-4dd6-ab47-8dfa2b4f09f0_untappd.json b/server/src/data/split/67c083d7-1d13-4dd6-ab47-8dfa2b4f09f0_untappd.json index 19e079a..e4b7247 100644 --- a/server/src/data/split/67c083d7-1d13-4dd6-ab47-8dfa2b4f09f0_untappd.json +++ b/server/src/data/split/67c083d7-1d13-4dd6-ab47-8dfa2b4f09f0_untappd.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "756b43396c3898519504c287ce03811d1ccd6d12", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/67ee173f-ef22-46e2-ba83-6142dccce254_projecthandoffs.json b/server/src/data/split/67ee173f-ef22-46e2-ba83-6142dccce254_projecthandoffs.json index 364beed..f6c3175 100644 --- a/server/src/data/split/67ee173f-ef22-46e2-ba83-6142dccce254_projecthandoffs.json +++ b/server/src/data/split/67ee173f-ef22-46e2-ba83-6142dccce254_projecthandoffs.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-01-19T03:16:35Z", diff --git a/server/src/data/split/680088ba-b7ab-4fec-8696-8d4dbca9e1d7_datadog.json b/server/src/data/split/680088ba-b7ab-4fec-8696-8d4dbca9e1d7_datadog.json index 510f85a..6c175f2 100644 --- a/server/src/data/split/680088ba-b7ab-4fec-8696-8d4dbca9e1d7_datadog.json +++ b/server/src/data/split/680088ba-b7ab-4fec-8696-8d4dbca9e1d7_datadog.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 43, + "githubStars": 44, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2025-04-20T10:01:12Z", diff --git a/server/src/data/split/6831168e-9c83-4d76-8c7b-75d1762eaff1_googlecustomsearch.json b/server/src/data/split/6831168e-9c83-4d76-8c7b-75d1762eaff1_googlecustomsearch.json index 1160016..62db999 100644 --- a/server/src/data/split/6831168e-9c83-4d76-8c7b-75d1762eaff1_googlecustomsearch.json +++ b/server/src/data/split/6831168e-9c83-4d76-8c7b-75d1762eaff1_googlecustomsearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 77, + "githubStars": 78, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-03-20T15:38:31Z", diff --git a/server/src/data/split/684b7a1f-b337-4fca-aff3-e23d0db7970e_jdbc.json b/server/src/data/split/684b7a1f-b337-4fca-aff3-e23d0db7970e_jdbc.json index 647a115..6af4000 100644 --- a/server/src/data/split/684b7a1f-b337-4fca-aff3-e23d0db7970e_jdbc.json +++ b/server/src/data/split/684b7a1f-b337-4fca-aff3-e23d0db7970e_jdbc.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 109, + "githubStars": 111, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-18T09:21:26Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "quarkiverse", "githubLatestCommit": "c7cf4a5ea122938fd9f05fb62928bb011c2759c9", - "githubForks": 28, + "githubForks": 29, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/6965a9c3-fd85-4e8a-85cd-df39220ff563_anki.json b/server/src/data/split/6965a9c3-fd85-4e8a-85cd-df39220ff563_anki.json index c15c231..14ee60a 100644 --- a/server/src/data/split/6965a9c3-fd85-4e8a-85cd-df39220ff563_anki.json +++ b/server/src/data/split/6965a9c3-fd85-4e8a-85cd-df39220ff563_anki.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "9078e84aeef5832f32dd282d55f745c464beb9a6", - "githubForks": 8, + "githubForks": 9, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/698f5da7-7bab-438a-b3c7-b6a52ba39c1d_manifoldmarkets.json b/server/src/data/split/698f5da7-7bab-438a-b3c7-b6a52ba39c1d_manifoldmarkets.json index 4147388..dd0c6eb 100644 --- a/server/src/data/split/698f5da7-7bab-438a-b3c7-b6a52ba39c1d_manifoldmarkets.json +++ b/server/src/data/split/698f5da7-7bab-438a-b3c7-b6a52ba39c1d_manifoldmarkets.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "9b6fd147b100b5b5c8435e58ccb9e2589c0a39d8", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/69b5f536-9a41-462a-b402-fc967dba2d23_readmysql.json b/server/src/data/split/69b5f536-9a41-462a-b402-fc967dba2d23_readmysql.json index 8aa5928..a81dc45 100644 --- a/server/src/data/split/69b5f536-9a41-462a-b402-fc967dba2d23_readmysql.json +++ b/server/src/data/split/69b5f536-9a41-462a-b402-fc967dba2d23_readmysql.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 312, + "githubStars": 318, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-03T14:06:43Z", diff --git a/server/src/data/split/6a8bf0a0-3a6f-4ec7-8a9f-c302e78d05ce_xtwitter.json b/server/src/data/split/6a8bf0a0-3a6f-4ec7-8a9f-c302e78d05ce_xtwitter.json index 0bb6122..b1a594a 100644 --- a/server/src/data/split/6a8bf0a0-3a6f-4ec7-8a9f-c302e78d05ce_xtwitter.json +++ b/server/src/data/split/6a8bf0a0-3a6f-4ec7-8a9f-c302e78d05ce_xtwitter.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 195, + "githubStars": 196, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", "updatedAt": "2025-03-12T12:53:13Z", diff --git a/server/src/data/split/6a97905a-c831-4bb5-9a6a-b9a43e3c18dc_ssh.json b/server/src/data/split/6a97905a-c831-4bb5-9a6a-b9a43e3c18dc_ssh.json index 5537a31..8d773b3 100644 --- a/server/src/data/split/6a97905a-c831-4bb5-9a6a-b9a43e3c18dc_ssh.json +++ b/server/src/data/split/6a97905a-c831-4bb5-9a6a-b9a43e3c18dc_ssh.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 25, + "githubStars": 26, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2024-12-02T19:53:20Z", diff --git a/server/src/data/split/6acbef11-84fc-46af-a512-a6308513e80b_quickchart.json b/server/src/data/split/6acbef11-84fc-46af-a512-a6308513e80b_quickchart.json index c058bbe..6807171 100644 --- a/server/src/data/split/6acbef11-84fc-46af-a512-a6308513e80b_quickchart.json +++ b/server/src/data/split/6acbef11-84fc-46af-a512-a6308513e80b_quickchart.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 54, + "githubStars": 56, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", "updatedAt": "2025-04-16T15:03:32Z", diff --git a/server/src/data/split/6af52230-a38a-4548-af86-033c9a04748e_redis.json b/server/src/data/split/6af52230-a38a-4548-af86-033c9a04748e_redis.json index f10a648..2ed5069 100644 --- a/server/src/data/split/6af52230-a38a-4548-af86-033c9a04748e_redis.json +++ b/server/src/data/split/6af52230-a38a-4548-af86-033c9a04748e_redis.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 18, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-02-11T21:46:40Z", diff --git a/server/src/data/split/6c48de58-d68c-4f36-aa76-43705c8696da_higressmcpserverhosting.json b/server/src/data/split/6c48de58-d68c-4f36-aa76-43705c8696da_higressmcpserverhosting.json index 59311f8..225da7e 100644 --- a/server/src/data/split/6c48de58-d68c-4f36-aa76-43705c8696da_higressmcpserverhosting.json +++ b/server/src/data/split/6c48de58-d68c-4f36-aa76-43705c8696da_higressmcpserverhosting.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 5131, + "githubStars": 5146, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T05:42:14Z", + "updatedAt": "2025-04-29T03:38:51Z", "hubId": "6c48de58-d68c-4f36-aa76-43705c8696da", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "alibaba", - "githubLatestCommit": "c382635e7f6fc30d8789a7cc4122ff3a18961dbe", - "githubForks": 648, + "githubLatestCommit": "806563298bd5757782f72b1c2ed594b12db37794", + "githubForks": 650, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/6c7c8324-5717-4ea2-a49c-d43608572adf_3dprintermanager.json b/server/src/data/split/6c7c8324-5717-4ea2-a49c-d43608572adf_3dprintermanager.json index c89e243..d06def5 100644 --- a/server/src/data/split/6c7c8324-5717-4ea2-a49c-d43608572adf_3dprintermanager.json +++ b/server/src/data/split/6c7c8324-5717-4ea2-a49c-d43608572adf_3dprintermanager.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 42, + "githubStars": 43, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", "updatedAt": "2025-04-15T00:09:09Z", diff --git a/server/src/data/split/6cae831a-22bf-4d4a-b3e5-49e1faa6d0c4_logseqknowledgegraph.json b/server/src/data/split/6cae831a-22bf-4d4a-b3e5-49e1faa6d0c4_logseqknowledgegraph.json index 5e74b9d..a9c8fca 100644 --- a/server/src/data/split/6cae831a-22bf-4d4a-b3e5-49e1faa6d0c4_logseqknowledgegraph.json +++ b/server/src/data/split/6cae831a-22bf-4d4a-b3e5-49e1faa6d0c4_logseqknowledgegraph.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "d03ca484e3a9a6d9dd8141c53c12d1f086c75cfe", - "githubForks": 2, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/6cd1d939-23e1-4d86-a004-7dca45ebe25a_nstravelinformation.json b/server/src/data/split/6cd1d939-23e1-4d86-a004-7dca45ebe25a_nstravelinformation.json index e35da1a..b6d0e15 100644 --- a/server/src/data/split/6cd1d939-23e1-4d86-a004-7dca45ebe25a_nstravelinformation.json +++ b/server/src/data/split/6cd1d939-23e1-4d86-a004-7dca45ebe25a_nstravelinformation.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 29, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-04-11T07:23:40Z", diff --git a/server/src/data/split/6cd36b65-c3d1-4af7-b3ec-779885c89eed_exawebsearch.json b/server/src/data/split/6cd36b65-c3d1-4af7-b3ec-779885c89eed_exawebsearch.json index b078f34..bf54826 100644 --- a/server/src/data/split/6cd36b65-c3d1-4af7-b3ec-779885c89eed_exawebsearch.json +++ b/server/src/data/split/6cd36b65-c3d1-4af7-b3ec-779885c89eed_exawebsearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 132, + "githubStars": 133, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-19T23:44:57Z", diff --git a/server/src/data/split/6d1c9e2a-54c9-43c4-a9d4-2bd2d9df01f5_notion.json b/server/src/data/split/6d1c9e2a-54c9-43c4-a9d4-2bd2d9df01f5_notion.json index 0ed1dbd..33d6432 100644 --- a/server/src/data/split/6d1c9e2a-54c9-43c4-a9d4-2bd2d9df01f5_notion.json +++ b/server/src/data/split/6d1c9e2a-54c9-43c4-a9d4-2bd2d9df01f5_notion.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 98, + "githubStars": 99, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-04-17T14:27:41Z", diff --git a/server/src/data/split/6d1f2e38-ba05-4a2a-8afd-c1cfd3466f05_discord.json b/server/src/data/split/6d1f2e38-ba05-4a2a-8afd-c1cfd3466f05_discord.json index d9dbea5..fd9bc25 100644 --- a/server/src/data/split/6d1f2e38-ba05-4a2a-8afd-c1cfd3466f05_discord.json +++ b/server/src/data/split/6d1f2e38-ba05-4a2a-8afd-c1cfd3466f05_discord.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 416, + "githubStars": 453, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T23:44:58Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "Klavis-AI", "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", - "githubForks": 74, + "githubForks": 82, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/6da8ed93-fcb7-49b9-afb1-6e23f3318cb9_fetch.json b/server/src/data/split/6da8ed93-fcb7-49b9-afb1-6e23f3318cb9_fetch.json index dc9d8c7..c4a0b3c 100644 --- a/server/src/data/split/6da8ed93-fcb7-49b9-afb1-6e23f3318cb9_fetch.json +++ b/server/src/data/split/6da8ed93-fcb7-49b9-afb1-6e23f3318cb9_fetch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42039, "downloadCount": 0, "createdAt": "2025-03-14T15:32:40.972465+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/6e060f4a-cc38-4190-be60-fc7b7174f256_gitee.json b/server/src/data/split/6e060f4a-cc38-4190-be60-fc7b7174f256_gitee.json index 800fe82..f1ca17d 100644 --- a/server/src/data/split/6e060f4a-cc38-4190-be60-fc7b7174f256_gitee.json +++ b/server/src/data/split/6e060f4a-cc38-4190-be60-fc7b7174f256_gitee.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 23, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T07:29:37Z", diff --git a/server/src/data/split/6e59aad6-f36c-4d67-b1c3-87b36bf8e998_imagegenjimengai.json b/server/src/data/split/6e59aad6-f36c-4d67-b1c3-87b36bf8e998_imagegenjimengai.json index 1c1131a..45446bc 100644 --- a/server/src/data/split/6e59aad6-f36c-4d67-b1c3-87b36bf8e998_imagegenjimengai.json +++ b/server/src/data/split/6e59aad6-f36c-4d67-b1c3-87b36bf8e998_imagegenjimengai.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 123, + "githubStars": 127, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-11T14:44:59Z", diff --git a/server/src/data/split/6e6ecd6e-0148-4f9f-974a-0b1a5c4f51f6_wordpress.json b/server/src/data/split/6e6ecd6e-0148-4f9f-974a-0b1a5c4f51f6_wordpress.json index 2f8f5db..f73e098 100644 --- a/server/src/data/split/6e6ecd6e-0148-4f9f-974a-0b1a5c4f51f6_wordpress.json +++ b/server/src/data/split/6e6ecd6e-0148-4f9f-974a-0b1a5c4f51f6_wordpress.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 72, + "githubStars": 75, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", "updatedAt": "2025-01-28T21:36:51Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "43a81e6b02270cccdf99107049c8f79e8df92fbe", - "githubForks": 14, + "githubForks": 15, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/6ee795ee-da30-4265-8bc1-df68c9fb06c4_weaviate.json b/server/src/data/split/6ee795ee-da30-4265-8bc1-df68c9fb06c4_weaviate.json index 5bb826c..e27e158 100644 --- a/server/src/data/split/6ee795ee-da30-4265-8bc1-df68c9fb06c4_weaviate.json +++ b/server/src/data/split/6ee795ee-da30-4265-8bc1-df68c9fb06c4_weaviate.json @@ -15,7 +15,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 101, + "githubStars": 103, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-03-06T14:24:15Z", diff --git a/server/src/data/split/6f01807f-d5b7-4dfe-8405-97d4bce8770c_puppeteer.json b/server/src/data/split/6f01807f-d5b7-4dfe-8405-97d4bce8770c_puppeteer.json index ff68e02..9552b55 100644 --- a/server/src/data/split/6f01807f-d5b7-4dfe-8405-97d4bce8770c_puppeteer.json +++ b/server/src/data/split/6f01807f-d5b7-4dfe-8405-97d4bce8770c_puppeteer.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42039, "downloadCount": 8443, "createdAt": "2025-02-18T05:45:10.813537Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/713f3221-9770-44b5-bd4d-b329bc313c8d_linkedin.json b/server/src/data/split/713f3221-9770-44b5-bd4d-b329bc313c8d_linkedin.json index 795b1eb..969a0de 100644 --- a/server/src/data/split/713f3221-9770-44b5-bd4d-b329bc313c8d_linkedin.json +++ b/server/src/data/split/713f3221-9770-44b5-bd4d-b329bc313c8d_linkedin.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 11, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-21T05:49:15Z", diff --git a/server/src/data/split/72539de7-23d1-4606-ad87-6ca18ee1d8ce_snowflake.json b/server/src/data/split/72539de7-23d1-4606-ad87-6ca18ee1d8ce_snowflake.json index eb358e9..2e637fb 100644 --- a/server/src/data/split/72539de7-23d1-4606-ad87-6ca18ee1d8ce_snowflake.json +++ b/server/src/data/split/72539de7-23d1-4606-ad87-6ca18ee1d8ce_snowflake.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "e22dc7a8ef31b1fde5c86d416dfb7ff94d233759", - "githubForks": 24, + "githubForks": 25, "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/72bbd35b-97ef-40f9-9f94-b827151f8c74_jupyternotebook.json b/server/src/data/split/72bbd35b-97ef-40f9-9f94-b827151f8c74_jupyternotebook.json index 304108d..df4ec7f 100644 --- a/server/src/data/split/72bbd35b-97ef-40f9-9f94-b827151f8c74_jupyternotebook.json +++ b/server/src/data/split/72bbd35b-97ef-40f9-9f94-b827151f8c74_jupyternotebook.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 241, + "githubStars": 243, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-04-25T12:31:29Z", diff --git a/server/src/data/split/73126158-69db-4b43-8d4f-92ded15ee0a9_mcpm.json b/server/src/data/split/73126158-69db-4b43-8d4f-92ded15ee0a9_mcpm.json index 9391400..91a1f10 100644 --- a/server/src/data/split/73126158-69db-4b43-8d4f-92ded15ee0a9_mcpm.json +++ b/server/src/data/split/73126158-69db-4b43-8d4f-92ded15ee0a9_mcpm.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 456, + "githubStars": 461, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T04:02:10Z", + "updatedAt": "2025-04-29T01:52:15Z", "hubId": "73126158-69db-4b43-8d4f-92ded15ee0a9", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "pathintegral-institute", - "githubLatestCommit": "80a4a3d9cfb03474800c39ccba675d487e5dff69", + "githubLatestCommit": "0874ccc559631d00decfdee32b229f27220e222c", "githubForks": 38, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7393178f-6793-4a18-a9bc-1916ff2a7d18_baiduaisearch.json b/server/src/data/split/7393178f-6793-4a18-a9bc-1916ff2a7d18_baiduaisearch.json index 83a8ce6..e2aba99 100644 --- a/server/src/data/split/7393178f-6793-4a18-a9bc-1916ff2a7d18_baiduaisearch.json +++ b/server/src/data/split/7393178f-6793-4a18-a9bc-1916ff2a7d18_baiduaisearch.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 522, + "githubStars": 523, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T03:07:03Z", + "updatedAt": "2025-04-28T13:56:24Z", "hubId": "7393178f-6793-4a18-a9bc-1916ff2a7d18", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "baidubce", - "githubLatestCommit": "f1c18e5a519f4bf1d11ee92db245d9647a6eb014", + "githubLatestCommit": "958bf138e8cda61013f2ef3e0bd4ef9376792482", "githubForks": 128, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/7495480b-0f3f-4559-86b3-6f9775e1d83f_sentry.json b/server/src/data/split/7495480b-0f3f-4559-86b3-6f9775e1d83f_sentry.json index 671835e..9416461 100644 --- a/server/src/data/split/7495480b-0f3f-4559-86b3-6f9775e1d83f_sentry.json +++ b/server/src/data/split/7495480b-0f3f-4559-86b3-6f9775e1d83f_sentry.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42040, "downloadCount": 4084, "createdAt": "2025-02-19T02:22:38.723905Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/74d8157b-17ba-4a8d-a0a7-0cebfe917562_aws.json b/server/src/data/split/74d8157b-17ba-4a8d-a0a7-0cebfe917562_aws.json index bdf1b35..8633d4d 100644 --- a/server/src/data/split/74d8157b-17ba-4a8d-a0a7-0cebfe917562_aws.json +++ b/server/src/data/split/74d8157b-17ba-4a8d-a0a7-0cebfe917562_aws.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 245, + "githubStars": 246, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-04T14:53:44Z", diff --git a/server/src/data/split/74fd5b35-8233-42f8-a48a-ba8b26d71cf2_redash.json b/server/src/data/split/74fd5b35-8233-42f8-a48a-ba8b26d71cf2_redash.json index 91be3b3..d75455b 100644 --- a/server/src/data/split/74fd5b35-8233-42f8-a48a-ba8b26d71cf2_redash.json +++ b/server/src/data/split/74fd5b35-8233-42f8-a48a-ba8b26d71cf2_redash.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "ba270f986655f781c5ebab1f2a1ce9dd1b3ed83d", - "githubForks": 3, + "githubForks": 4, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/75145aee-3868-4924-805a-29841e232278_postgresqldatabasemanager.json b/server/src/data/split/75145aee-3868-4924-805a-29841e232278_postgresqldatabasemanager.json index d05a843..5fb4916 100644 --- a/server/src/data/split/75145aee-3868-4924-805a-29841e232278_postgresqldatabasemanager.json +++ b/server/src/data/split/75145aee-3868-4924-805a-29841e232278_postgresqldatabasemanager.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "3ab0e17248a81da006352e0e5ba305c6844e5b7f", - "githubForks": 13, + "githubForks": 14, "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/75149d9e-6b9f-4627-9a11-562e87addbb3_waldur.json b/server/src/data/split/75149d9e-6b9f-4627-9a11-562e87addbb3_waldur.json index 82c6764..d4d382e 100644 --- a/server/src/data/split/75149d9e-6b9f-4627-9a11-562e87addbb3_waldur.json +++ b/server/src/data/split/75149d9e-6b9f-4627-9a11-562e87addbb3_waldur.json @@ -19,12 +19,12 @@ "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-04-04T21:08:17Z", + "updatedAt": "2025-04-28T21:08:30Z", "hubId": "75149d9e-6b9f-4627-9a11-562e87addbb3", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "536eb69e76aa52772d3c04fbf0a169f15b87545c", + "githubLatestCommit": "7265581488be4dd12b0966cc49b942b58916965c", "githubForks": 2, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/752bae78-ea4c-4075-a11c-76e37bf8e0c9_youtubetranscripts.json b/server/src/data/split/752bae78-ea4c-4075-a11c-76e37bf8e0c9_youtubetranscripts.json index 042d5de..23deeef 100644 --- a/server/src/data/split/752bae78-ea4c-4075-a11c-76e37bf8e0c9_youtubetranscripts.json +++ b/server/src/data/split/752bae78-ea4c-4075-a11c-76e37bf8e0c9_youtubetranscripts.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 14, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-03-26T08:39:23Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "fece98eec06e7e7d351c146f2c2fca48c8fd43f5", - "githubForks": 6, + "githubForks": 7, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/756d2742-9b1a-46ce-9a91-b89c28bd4635_dbtclimcpserver.json b/server/src/data/split/756d2742-9b1a-46ce-9a91-b89c28bd4635_dbtclimcpserver.json index f3a27a3..c47dbce 100644 --- a/server/src/data/split/756d2742-9b1a-46ce-9a91-b89c28bd4635_dbtclimcpserver.json +++ b/server/src/data/split/756d2742-9b1a-46ce-9a91-b89c28bd4635_dbtclimcpserver.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "6283b0507a074347dbc08ad95cd335068ef7c65c", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/75e6b49a-5ab3-4d06-89aa-9872b0880898_dotenvx.json b/server/src/data/split/75e6b49a-5ab3-4d06-89aa-9872b0880898_dotenvx.json index 8981a52..1bbd53e 100644 --- a/server/src/data/split/75e6b49a-5ab3-4d06-89aa-9872b0880898_dotenvx.json +++ b/server/src/data/split/75e6b49a-5ab3-4d06-89aa-9872b0880898_dotenvx.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3643, + "githubStars": 3644, "downloadCount": 0, "createdAt": "2025-03-26T15:53:03.513058+00:00", "updatedAt": "2025-04-18T16:14:05Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8d0e9a511043a857527a74261006d44d3180ce14", - "githubForks": 65, + "githubForks": 64, "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/76601f6f-7366-4972-9d33-aeb2fa1802a2_googlesheets.json b/server/src/data/split/76601f6f-7366-4972-9d33-aeb2fa1802a2_googlesheets.json index d849bcf..8dcd4f6 100644 --- a/server/src/data/split/76601f6f-7366-4972-9d33-aeb2fa1802a2_googlesheets.json +++ b/server/src/data/split/76601f6f-7366-4972-9d33-aeb2fa1802a2_googlesheets.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 59, + "githubStars": 60, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-22T23:15:39Z", diff --git a/server/src/data/split/76a020f7-8fd3-46f9-9dec-3137bcae56c4_qwenmax.json b/server/src/data/split/76a020f7-8fd3-46f9-9dec-3137bcae56c4_qwenmax.json index 5b0d26d..819e1fe 100644 --- a/server/src/data/split/76a020f7-8fd3-46f9-9dec-3137bcae56c4_qwenmax.json +++ b/server/src/data/split/76a020f7-8fd3-46f9-9dec-3137bcae56c4_qwenmax.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 13, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", "updatedAt": "2025-02-05T14:15:01Z", diff --git a/server/src/data/split/781177d9-52cc-4f7c-b267-2a770d2a49cc_math.json b/server/src/data/split/781177d9-52cc-4f7c-b267-2a770d2a49cc_math.json index f408113..307cc88 100644 --- a/server/src/data/split/781177d9-52cc-4f7c-b267-2a770d2a49cc_math.json +++ b/server/src/data/split/781177d9-52cc-4f7c-b267-2a770d2a49cc_math.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 9, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", "updatedAt": "2025-04-15T23:13:49Z", diff --git a/server/src/data/split/78644957-2dc4-4fa1-bc8b-14c8ee28fa68_e2bpython.json b/server/src/data/split/78644957-2dc4-4fa1-bc8b-14c8ee28fa68_e2bpython.json index 0c18a89..17d381b 100644 --- a/server/src/data/split/78644957-2dc4-4fa1-bc8b-14c8ee28fa68_e2bpython.json +++ b/server/src/data/split/78644957-2dc4-4fa1-bc8b-14c8ee28fa68_e2bpython.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 233, + "githubStars": 235, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-28T10:26:03Z", diff --git a/server/src/data/split/78c0d4e9-eebc-44db-8d02-21fba6142d4e_applecalendar.json b/server/src/data/split/78c0d4e9-eebc-44db-8d02-21fba6142d4e_applecalendar.json index 6be9242..3de6117 100644 --- a/server/src/data/split/78c0d4e9-eebc-44db-8d02-21fba6142d4e_applecalendar.json +++ b/server/src/data/split/78c0d4e9-eebc-44db-8d02-21fba6142d4e_applecalendar.json @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "Omar-V2", "githubLatestCommit": "6746f872e8c26ec4f404a2af7a5dc897603d541d", - "githubForks": 32, + "githubForks": 33, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/78c44812-fb82-4c6d-a66e-8b28b3726535_markdown2doc.json b/server/src/data/split/78c44812-fb82-4c6d-a66e-8b28b3726535_markdown2doc.json index fef9820..b9bf9db 100644 --- a/server/src/data/split/78c44812-fb82-4c6d-a66e-8b28b3726535_markdown2doc.json +++ b/server/src/data/split/78c44812-fb82-4c6d-a66e-8b28b3726535_markdown2doc.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 416, + "githubStars": 453, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T23:44:58Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "Klavis-AI", "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", - "githubForks": 74, + "githubForks": 82, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7900a483-96bd-4f3a-83b4-1e50fd3fe5bc_kubernetes.json b/server/src/data/split/7900a483-96bd-4f3a-83b4-1e50fd3fe5bc_kubernetes.json index 7fa6753..ef05958 100644 --- a/server/src/data/split/7900a483-96bd-4f3a-83b4-1e50fd3fe5bc_kubernetes.json +++ b/server/src/data/split/7900a483-96bd-4f3a-83b4-1e50fd3fe5bc_kubernetes.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 135, + "githubStars": 138, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-04-26T05:22:17Z", diff --git a/server/src/data/split/79557f23-1184-43ea-8fea-bbc2b4745505_everything.json b/server/src/data/split/79557f23-1184-43ea-8fea-bbc2b4745505_everything.json index 26fbf0a..4a38aef 100644 --- a/server/src/data/split/79557f23-1184-43ea-8fea-bbc2b4745505_everything.json +++ b/server/src/data/split/79557f23-1184-43ea-8fea-bbc2b4745505_everything.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41716, + "githubStars": 42040, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "modelcontextprotocol", "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7a016e59-4c2f-4728-a481-10ced467ea5a_sequentialthinking.json b/server/src/data/split/7a016e59-4c2f-4728-a481-10ced467ea5a_sequentialthinking.json index 6bee6f0..1f16a10 100644 --- a/server/src/data/split/7a016e59-4c2f-4728-a481-10ced467ea5a_sequentialthinking.json +++ b/server/src/data/split/7a016e59-4c2f-4728-a481-10ced467ea5a_sequentialthinking.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42040, "downloadCount": 11888, "createdAt": "2025-02-18T05:45:21.365219Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4614, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7a45dcf6-17e7-4448-bcf0-f8546578132f_markdownify.json b/server/src/data/split/7a45dcf6-17e7-4448-bcf0-f8546578132f_markdownify.json index 11ecb13..e684478 100644 --- a/server/src/data/split/7a45dcf6-17e7-4448-bcf0-f8546578132f_markdownify.json +++ b/server/src/data/split/7a45dcf6-17e7-4448-bcf0-f8546578132f_markdownify.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f7445b2ab767711d26d2e50294d7c49053235a12", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7a8cd261-b1bb-40c3-a284-db206bc892e7_paddle.json b/server/src/data/split/7a8cd261-b1bb-40c3-a284-db206bc892e7_paddle.json index ecec97d..a606cff 100644 --- a/server/src/data/split/7a8cd261-b1bb-40c3-a284-db206bc892e7_paddle.json +++ b/server/src/data/split/7a8cd261-b1bb-40c3-a284-db206bc892e7_paddle.json @@ -12,13 +12,13 @@ "githubStars": 10, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T08:13:54Z", + "updatedAt": "2025-04-28T15:14:18Z", "hubId": "7a8cd261-b1bb-40c3-a284-db206bc892e7", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "PaddleHQ", - "githubLatestCommit": "e63455463ef1affb318d7801a27f8a3fe424f096", + "githubLatestCommit": "abf29eff4068d252a311f0e28b8f43dc44e35ed8", "githubForks": 3, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/7b43b92f-6e6d-4a57-8447-74764acc11de_fantasypremierleague.json b/server/src/data/split/7b43b92f-6e6d-4a57-8447-74764acc11de_fantasypremierleague.json index b3b69f6..2bdc974 100644 --- a/server/src/data/split/7b43b92f-6e6d-4a57-8447-74764acc11de_fantasypremierleague.json +++ b/server/src/data/split/7b43b92f-6e6d-4a57-8447-74764acc11de_fantasypremierleague.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 16, + "githubStars": 18, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", "updatedAt": "2025-04-01T03:20:04Z", diff --git a/server/src/data/split/7bb041b2-d1c5-4679-bc3f-833231580f79_thingsapp.json b/server/src/data/split/7bb041b2-d1c5-4679-bc3f-833231580f79_thingsapp.json index 0002d0e..edea3b9 100644 --- a/server/src/data/split/7bb041b2-d1c5-4679-bc3f-833231580f79_thingsapp.json +++ b/server/src/data/split/7bb041b2-d1c5-4679-bc3f-833231580f79_thingsapp.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 24, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", "updatedAt": "2025-01-17T22:12:25Z", diff --git a/server/src/data/split/7c25184e-43e5-4d8c-998f-249786aaad49_itermmcp.json b/server/src/data/split/7c25184e-43e5-4d8c-998f-249786aaad49_itermmcp.json index 73e6902..33b1383 100644 --- a/server/src/data/split/7c25184e-43e5-4d8c-998f-249786aaad49_itermmcp.json +++ b/server/src/data/split/7c25184e-43e5-4d8c-998f-249786aaad49_itermmcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 289, + "githubStars": 290, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-17T03:35:52Z", @@ -19,6 +19,6 @@ "isCommunityServer": true, "author": "ferrislucas", "githubLatestCommit": "76d07b9ff6ce62e793a4fae281b72648cb171fb6", - "githubForks": 22, + "githubForks": 23, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7c57a782-cb7f-487e-b65a-e2a3b2e798b0_cloudflare.json b/server/src/data/split/7c57a782-cb7f-487e-b65a-e2a3b2e798b0_cloudflare.json index f4da69e..2b27dc9 100644 --- a/server/src/data/split/7c57a782-cb7f-487e-b65a-e2a3b2e798b0_cloudflare.json +++ b/server/src/data/split/7c57a782-cb7f-487e-b65a-e2a3b2e798b0_cloudflare.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 1400, + "githubStars": 1405, "downloadCount": 627, "createdAt": "2025-02-17T22:22:47.133329Z", - "updatedAt": "2025-04-27T08:46:25Z", + "updatedAt": "2025-04-28T21:47:27Z", "hubId": "7c57a782-cb7f-487e-b65a-e2a3b2e798b0", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "9a8b97ec0dfe058d226374c35fd5c5c02bb8351e", - "githubForks": 106, + "githubLatestCommit": "895162f07e99807de8caeab8d55468c2a9a707a4", + "githubForks": 107, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/7cc27a1a-3516-4cec-8c75-8dfbe090a7bb_figma.json b/server/src/data/split/7cc27a1a-3516-4cec-8c75-8dfbe090a7bb_figma.json index 10e11af..c627c03 100644 --- a/server/src/data/split/7cc27a1a-3516-4cec-8c75-8dfbe090a7bb_figma.json +++ b/server/src/data/split/7cc27a1a-3516-4cec-8c75-8dfbe090a7bb_figma.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6028, + "githubStars": 6069, "downloadCount": 4493, "createdAt": "2025-02-17T22:27:13.107046Z", "updatedAt": "2025-04-24T14:00:25Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f3870dd49e6d02e2696b54bc21b84a735d8049dd", - "githubForks": 483, + "githubForks": 486, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7cfcae29-85c4-4214-92e3-5d0d089da3b9_pif.json b/server/src/data/split/7cfcae29-85c4-4214-92e3-5d0d089da3b9_pif.json index 6964aaa..c0784db 100644 --- a/server/src/data/split/7cfcae29-85c4-4214-92e3-5d0d089da3b9_pif.json +++ b/server/src/data/split/7cfcae29-85c4-4214-92e3-5d0d089da3b9_pif.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 26, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-19T21:58:23Z", diff --git a/server/src/data/split/7f5312d2-ab04-47ec-b2bf-c1eff86015cc_playwright.json b/server/src/data/split/7f5312d2-ab04-47ec-b2bf-c1eff86015cc_playwright.json index 7aeca8a..883ddf7 100644 --- a/server/src/data/split/7f5312d2-ab04-47ec-b2bf-c1eff86015cc_playwright.json +++ b/server/src/data/split/7f5312d2-ab04-47ec-b2bf-c1eff86015cc_playwright.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3302, + "githubStars": 3319, "downloadCount": 3926, "createdAt": "2025-02-17T22:45:31.388884Z", "updatedAt": "2025-04-22T22:00:52Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "dae228f8b1e3994c7c59d5557cc2533ea37d71a9", - "githubForks": 260, + "githubForks": 262, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/7f756111-4f30-4442-aa4b-297b73fd338d_okta.json b/server/src/data/split/7f756111-4f30-4442-aa4b-297b73fd338d_okta.json index 69e02cb..a06e5b0 100644 --- a/server/src/data/split/7f756111-4f30-4442-aa4b-297b73fd338d_okta.json +++ b/server/src/data/split/7f756111-4f30-4442-aa4b-297b73fd338d_okta.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 9, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T19:55:52Z", diff --git a/server/src/data/split/7ff10c83-8eff-4e72-a95f-4ff9605818e5_youtubetranscript.json b/server/src/data/split/7ff10c83-8eff-4e72-a95f-4ff9605818e5_youtubetranscript.json index 779169e..a3dc090 100644 --- a/server/src/data/split/7ff10c83-8eff-4e72-a95f-4ff9605818e5_youtubetranscript.json +++ b/server/src/data/split/7ff10c83-8eff-4e72-a95f-4ff9605818e5_youtubetranscript.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 13, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-04-13T05:07:46Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "f28b82d4ec728abdaeb5faf4e03f081af8a5dbb3", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/811397b8-ea3b-4be6-ac21-e959ae0445e0_memorybank.json b/server/src/data/split/811397b8-ea3b-4be6-ac21-e959ae0445e0_memorybank.json index efa7496..386c86d 100644 --- a/server/src/data/split/811397b8-ea3b-4be6-ac21-e959ae0445e0_memorybank.json +++ b/server/src/data/split/811397b8-ea3b-4be6-ac21-e959ae0445e0_memorybank.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 211, + "githubStars": 226, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-31T23:05:38Z", diff --git a/server/src/data/split/81a4f8b9-d140-44dc-857f-aba97df3f0e6_arizephoenix.json b/server/src/data/split/81a4f8b9-d140-44dc-857f-aba97df3f0e6_arizephoenix.json index a2d278f..f36e12b 100644 --- a/server/src/data/split/81a4f8b9-d140-44dc-857f-aba97df3f0e6_arizephoenix.json +++ b/server/src/data/split/81a4f8b9-d140-44dc-857f-aba97df3f0e6_arizephoenix.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 5493, + "githubStars": 5499, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T05:06:20Z", + "updatedAt": "2025-04-28T23:14:26Z", "hubId": "81a4f8b9-d140-44dc-857f-aba97df3f0e6", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "Arize-ai", - "githubLatestCommit": "7c0b3bd8eee40b829b5affa0d7ff73f6f35ef326", + "githubLatestCommit": "f882faf506e2109f810d89bd9ac616ff406ce049", "githubForks": 408, "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/82bdaaed-b127-491b-bade-3e4f7aca4e85_awesomemcpserversbywong2.json b/server/src/data/split/82bdaaed-b127-491b-bade-3e4f7aca4e85_awesomemcpserversbywong2.json index d5cdcac..4b317d9 100644 --- a/server/src/data/split/82bdaaed-b127-491b-bade-3e4f7aca4e85_awesomemcpserversbywong2.json +++ b/server/src/data/split/82bdaaed-b127-491b-bade-3e4f7aca4e85_awesomemcpserversbywong2.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 963, + "githubStars": 971, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T07:59:19Z", + "updatedAt": "2025-04-29T03:13:52Z", "hubId": "82bdaaed-b127-491b-bade-3e4f7aca4e85", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, "author": "wong2", - "githubLatestCommit": "d2e9fa8d891adf43e005cc4c8dd587669709b657", + "githubLatestCommit": "aae41fac634f00c11dccc470bd010a56e1dc27a9", "githubForks": 205, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/82e902f6-0a8f-4788-9d5a-7d8ba166620b_webhooks.json b/server/src/data/split/82e902f6-0a8f-4788-9d5a-7d8ba166620b_webhooks.json index b1de9b4..ca16cb1 100644 --- a/server/src/data/split/82e902f6-0a8f-4788-9d5a-7d8ba166620b_webhooks.json +++ b/server/src/data/split/82e902f6-0a8f-4788-9d5a-7d8ba166620b_webhooks.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 12, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-04-12T16:12:27Z", + "updatedAt": "2025-04-28T16:47:49Z", "hubId": "82e902f6-0a8f-4788-9d5a-7d8ba166620b", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "b23968e1b435c0303f415fdcac2486b2d34d75f5", - "githubForks": 4, + "githubLatestCommit": "8c2f042e5615cd0111d8b3372a9af609f3b6fdda", + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/83057c1c-df9b-4d6d-9d67-9da1a28e7ba9_spotify.json b/server/src/data/split/83057c1c-df9b-4d6d-9d67-9da1a28e7ba9_spotify.json index 47af9a6..a9ab32f 100644 --- a/server/src/data/split/83057c1c-df9b-4d6d-9d67-9da1a28e7ba9_spotify.json +++ b/server/src/data/split/83057c1c-df9b-4d6d-9d67-9da1a28e7ba9_spotify.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 253, + "githubStars": 257, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-04-13T21:02:40Z", diff --git a/server/src/data/split/83b9359e-07f4-4268-9d00-3b3bd8ce0642_redis.json b/server/src/data/split/83b9359e-07f4-4268-9d00-3b3bd8ce0642_redis.json index 47887ea..be962c5 100644 --- a/server/src/data/split/83b9359e-07f4-4268-9d00-3b3bd8ce0642_redis.json +++ b/server/src/data/split/83b9359e-07f4-4268-9d00-3b3bd8ce0642_redis.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42042, "downloadCount": 1316, "createdAt": "2025-02-18T05:45:15.150896Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4616, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/83c1a1f5-eadf-4e6f-9749-b50b6c211bb3_financialdatasets.json b/server/src/data/split/83c1a1f5-eadf-4e6f-9749-b50b6c211bb3_financialdatasets.json index efd4607..52a366d 100644 --- a/server/src/data/split/83c1a1f5-eadf-4e6f-9749-b50b6c211bb3_financialdatasets.json +++ b/server/src/data/split/83c1a1f5-eadf-4e6f-9749-b50b6c211bb3_financialdatasets.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 225, + "githubStars": 228, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T10:58:56Z", diff --git a/server/src/data/split/85084afd-507d-4140-ae75-d0dc471eb898_postgresqlreader.json b/server/src/data/split/85084afd-507d-4140-ae75-d0dc471eb898_postgresqlreader.json index cbfb72d..bf94c34 100644 --- a/server/src/data/split/85084afd-507d-4140-ae75-d0dc471eb898_postgresqlreader.json +++ b/server/src/data/split/85084afd-507d-4140-ae75-d0dc471eb898_postgresqlreader.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41716, + "githubStars": 42042, "downloadCount": 2175, "createdAt": "2025-02-17T22:23:06.685298Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4616, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/85273ee6-848b-4599-b41e-1c017be601a7_hyperbrowser.json b/server/src/data/split/85273ee6-848b-4599-b41e-1c017be601a7_hyperbrowser.json index d3f9c84..941a75b 100644 --- a/server/src/data/split/85273ee6-848b-4599-b41e-1c017be601a7_hyperbrowser.json +++ b/server/src/data/split/85273ee6-848b-4599-b41e-1c017be601a7_hyperbrowser.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 245, + "githubStars": 249, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-13T21:24:43Z", @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "hyperbrowserai", "githubLatestCommit": "fe28e484219e038cebc2a809f88b42c71efd22c8", - "githubForks": 19, + "githubForks": 20, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/853995d5-3199-4775-86e7-b01b1813e3a8_mcpinstaller.json b/server/src/data/split/853995d5-3199-4775-86e7-b01b1813e3a8_mcpinstaller.json index acbec53..4fba001 100644 --- a/server/src/data/split/853995d5-3199-4775-86e7-b01b1813e3a8_mcpinstaller.json +++ b/server/src/data/split/853995d5-3199-4775-86e7-b01b1813e3a8_mcpinstaller.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1017, + "githubStars": 1020, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", "updatedAt": "2024-11-26T20:05:09Z", diff --git a/server/src/data/split/8599ffba-9eb5-4273-9402-23077eaac474_airbnb.json b/server/src/data/split/8599ffba-9eb5-4273-9402-23077eaac474_airbnb.json index 782654b..56a414b 100644 --- a/server/src/data/split/8599ffba-9eb5-4273-9402-23077eaac474_airbnb.json +++ b/server/src/data/split/8599ffba-9eb5-4273-9402-23077eaac474_airbnb.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 104, + "githubStars": 105, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T00:55:56Z", diff --git a/server/src/data/split/86c12176-5f8b-49ff-802e-49dde2d47830_dappier.json b/server/src/data/split/86c12176-5f8b-49ff-802e-49dde2d47830_dappier.json index 7fbed34..bb4b551 100644 --- a/server/src/data/split/86c12176-5f8b-49ff-802e-49dde2d47830_dappier.json +++ b/server/src/data/split/86c12176-5f8b-49ff-802e-49dde2d47830_dappier.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 9, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-27T14:59:25Z", diff --git a/server/src/data/split/86e00c72-959d-40cc-afe5-43aebecabd29_yfinancetrader.json b/server/src/data/split/86e00c72-959d-40cc-afe5-43aebecabd29_yfinancetrader.json index 36a4c48..f636a97 100644 --- a/server/src/data/split/86e00c72-959d-40cc-afe5-43aebecabd29_yfinancetrader.json +++ b/server/src/data/split/86e00c72-959d-40cc-afe5-43aebecabd29_yfinancetrader.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", "updatedAt": "2025-03-07T10:21:33Z", diff --git a/server/src/data/split/87d46c70-410e-460e-9db8-9adedd68ca0a_memorylibsql.json b/server/src/data/split/87d46c70-410e-460e-9db8-9adedd68ca0a_memorylibsql.json index a2d7a7b..f0ec1eb 100644 --- a/server/src/data/split/87d46c70-410e-460e-9db8-9adedd68ca0a_memorylibsql.json +++ b/server/src/data/split/87d46c70-410e-460e-9db8-9adedd68ca0a_memorylibsql.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "047fce16100baaffa15867d9ca6abfe662b4f961", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/8905ad09-553b-4f03-b94e-2aa9e527e61f_basicmemory.json b/server/src/data/split/8905ad09-553b-4f03-b94e-2aa9e527e61f_basicmemory.json index 517c9ed..ef1cfb8 100644 --- a/server/src/data/split/8905ad09-553b-4f03-b94e-2aa9e527e61f_basicmemory.json +++ b/server/src/data/split/8905ad09-553b-4f03-b94e-2aa9e527e61f_basicmemory.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 601, + "githubStars": 602, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-17T16:04:31Z", diff --git a/server/src/data/split/89f80ff3-1544-4da2-9422-38b3fb4beb43_cometopik.json b/server/src/data/split/89f80ff3-1544-4da2-9422-38b3fb4beb43_cometopik.json index 6e86415..cb595ec 100644 --- a/server/src/data/split/89f80ff3-1544-4da2-9422-38b3fb4beb43_cometopik.json +++ b/server/src/data/split/89f80ff3-1544-4da2-9422-38b3fb4beb43_cometopik.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 7012, + "githubStars": 7048, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T08:33:34Z", + "updatedAt": "2025-04-28T16:45:36Z", "hubId": "89f80ff3-1544-4da2-9422-38b3fb4beb43", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "comet-ml", - "githubLatestCommit": "d8dfbd76b8d4a1ca13720fdb0fdaf77a40c486ff", - "githubForks": 500, + "githubLatestCommit": "67f747bbd7a663f66cba5ebe7d598ea616b45663", + "githubForks": 502, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/8a01526f-dc15-4ec1-afa3-b68d63753f78_veyrax.json b/server/src/data/split/8a01526f-dc15-4ec1-afa3-b68d63753f78_veyrax.json index 4a2a0e6..3368d24 100644 --- a/server/src/data/split/8a01526f-dc15-4ec1-afa3-b68d63753f78_veyrax.json +++ b/server/src/data/split/8a01526f-dc15-4ec1-afa3-b68d63753f78_veyrax.json @@ -12,13 +12,13 @@ "githubStars": 27, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-25T10:12:04Z", + "updatedAt": "2025-04-29T06:14:59Z", "hubId": "8a01526f-dc15-4ec1-afa3-b68d63753f78", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "VeyraX", - "githubLatestCommit": "06f78fad0a240912e0e2a96f22bc4c26795aaa83", + "githubLatestCommit": "0c6023accf1043a2e1a577f9aae4a726da24cc65", "githubForks": 9, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/8aeda108-d573-4f18-bc25-b786c1bf50bf_awesomecryptomcpserversbybadkk.json b/server/src/data/split/8aeda108-d573-4f18-bc25-b786c1bf50bf_awesomecryptomcpserversbybadkk.json index 170691d..151bc6c 100644 --- a/server/src/data/split/8aeda108-d573-4f18-bc25-b786c1bf50bf_awesomecryptomcpserversbybadkk.json +++ b/server/src/data/split/8aeda108-d573-4f18-bc25-b786c1bf50bf_awesomecryptomcpserversbybadkk.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 66, + "githubStars": 67, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-27T03:27:16Z", diff --git a/server/src/data/split/8b4a9894-270e-4327-874a-58beb73c39d5_pineconeassistant.json b/server/src/data/split/8b4a9894-270e-4327-874a-58beb73c39d5_pineconeassistant.json index 6a465c6..6bbc371 100644 --- a/server/src/data/split/8b4a9894-270e-4327-874a-58beb73c39d5_pineconeassistant.json +++ b/server/src/data/split/8b4a9894-270e-4327-874a-58beb73c39d5_pineconeassistant.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 12, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-10T10:16:58Z", diff --git a/server/src/data/split/8b62c4f5-5efa-456a-860f-c705487b8200_summarization.json b/server/src/data/split/8b62c4f5-5efa-456a-860f-c705487b8200_summarization.json index e0ee508..9c77abe 100644 --- a/server/src/data/split/8b62c4f5-5efa-456a-860f-c705487b8200_summarization.json +++ b/server/src/data/split/8b62c4f5-5efa-456a-860f-c705487b8200_summarization.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "0e61e5a91d4f4a7630741d6929c12862e14c8884", - "githubForks": 6, + "githubForks": 7, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/8bb3ab1d-9d4f-4e1b-bdd7-c1f628de160f_sketchup.json b/server/src/data/split/8bb3ab1d-9d4f-4e1b-bdd7-c1f628de160f_sketchup.json index c227158..fdf07fc 100644 --- a/server/src/data/split/8bb3ab1d-9d4f-4e1b-bdd7-c1f628de160f_sketchup.json +++ b/server/src/data/split/8bb3ab1d-9d4f-4e1b-bdd7-c1f628de160f_sketchup.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 80, + "githubStars": 82, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-03-14T02:08:47Z", diff --git a/server/src/data/split/8d4a34a9-726e-4cbe-a40d-553916f714f8_apifyactors.json b/server/src/data/split/8d4a34a9-726e-4cbe-a40d-553916f714f8_apifyactors.json index a3b3868..5b33733 100644 --- a/server/src/data/split/8d4a34a9-726e-4cbe-a40d-553916f714f8_apifyactors.json +++ b/server/src/data/split/8d4a34a9-726e-4cbe-a40d-553916f714f8_apifyactors.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 180, + "githubStars": 182, "downloadCount": 168, "createdAt": "2025-02-18T05:45:40.818024Z", - "updatedAt": "2025-04-25T12:31:15Z", + "updatedAt": "2025-04-28T14:16:24Z", "hubId": "8d4a34a9-726e-4cbe-a40d-553916f714f8", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, - "githubLatestCommit": "521cc8e7f14b4726b5e534783952e037a93f1903", + "githubLatestCommit": "1f738a381fa2dd7d5f04662c51bdd7fbaf49e0a1", "githubForks": 19, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/8e18aed2-e795-4bd5-a44a-abbc2b0f68ed_windowsremotecontrol.json b/server/src/data/split/8e18aed2-e795-4bd5-a44a-abbc2b0f68ed_windowsremotecontrol.json index 57a3f8b..43913fe 100644 --- a/server/src/data/split/8e18aed2-e795-4bd5-a44a-abbc2b0f68ed_windowsremotecontrol.json +++ b/server/src/data/split/8e18aed2-e795-4bd5-a44a-abbc2b0f68ed_windowsremotecontrol.json @@ -19,12 +19,12 @@ "githubStars": 69, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-04-27T01:52:54Z", + "updatedAt": "2025-04-28T23:15:23Z", "hubId": "8e18aed2-e795-4bd5-a44a-abbc2b0f68ed", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "cb237924ff47c9586f5e5424b7fa1a3ecb538da4", + "githubLatestCommit": "f0cbaf3eb6afc5ed707e4b704d4aebda1cadd0b2", "githubForks": 14, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/8ee31a1f-2805-4606-888f-e4ff27249fd0_pinterest.json b/server/src/data/split/8ee31a1f-2805-4606-888f-e4ff27249fd0_pinterest.json index 2919f71..21a666c 100644 --- a/server/src/data/split/8ee31a1f-2805-4606-888f-e4ff27249fd0_pinterest.json +++ b/server/src/data/split/8ee31a1f-2805-4606-888f-e4ff27249fd0_pinterest.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 8, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", "updatedAt": "2025-04-10T01:38:57Z", diff --git a/server/src/data/split/8eea1f39-a795-4f6c-82d1-7cba3288974c_banklessonchain.json b/server/src/data/split/8eea1f39-a795-4f6c-82d1-7cba3288974c_banklessonchain.json index 5425e61..e4c3741 100644 --- a/server/src/data/split/8eea1f39-a795-4f6c-82d1-7cba3288974c_banklessonchain.json +++ b/server/src/data/split/8eea1f39-a795-4f6c-82d1-7cba3288974c_banklessonchain.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 28, + "githubStars": 29, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-18T22:03:29Z", diff --git a/server/src/data/split/902789e1-4a4c-464b-bf22-4bcf9e16db33_lightdash.json b/server/src/data/split/902789e1-4a4c-464b-bf22-4bcf9e16db33_lightdash.json index 745e40b..fb70aa0 100644 --- a/server/src/data/split/902789e1-4a4c-464b-bf22-4bcf9e16db33_lightdash.json +++ b/server/src/data/split/902789e1-4a4c-464b-bf22-4bcf9e16db33_lightdash.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 13, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-03-26T16:47:07Z", diff --git a/server/src/data/split/9087b414-136b-4cf2-b559-106a3422ab94_rijksmuseumamsterdam.json b/server/src/data/split/9087b414-136b-4cf2-b559-106a3422ab94_rijksmuseumamsterdam.json index 5f19453..863b293 100644 --- a/server/src/data/split/9087b414-136b-4cf2-b559-106a3422ab94_rijksmuseumamsterdam.json +++ b/server/src/data/split/9087b414-136b-4cf2-b559-106a3422ab94_rijksmuseumamsterdam.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 43, + "githubStars": 44, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2025-02-07T09:28:30Z", diff --git a/server/src/data/split/9140a07d-b01e-45f9-bde5-0dcfdfcf7fbf_cockroachdb.json b/server/src/data/split/9140a07d-b01e-45f9-bde5-0dcfdfcf7fbf_cockroachdb.json index 4448628..a63b7a5 100644 --- a/server/src/data/split/9140a07d-b01e-45f9-bde5-0dcfdfcf7fbf_cockroachdb.json +++ b/server/src/data/split/9140a07d-b01e-45f9-bde5-0dcfdfcf7fbf_cockroachdb.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "8f00f5188451c6822158c642de5f2030ea7bed8b", - "githubForks": 2, + "githubForks": 3, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/91f90a27-de73-4b04-8108-7418b55c9155_youtubesubtitles.json b/server/src/data/split/91f90a27-de73-4b04-8108-7418b55c9155_youtubesubtitles.json index 4961f23..fb7a27b 100644 --- a/server/src/data/split/91f90a27-de73-4b04-8108-7418b55c9155_youtubesubtitles.json +++ b/server/src/data/split/91f90a27-de73-4b04-8108-7418b55c9155_youtubesubtitles.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "161cfcfa0cc37e1923a38161d42fe1400f7928d1", - "githubForks": 0, + "githubForks": 1, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/92c07575-4e43-4802-be5c-4ac4624df27f_cloudfoundrybutler.json b/server/src/data/split/92c07575-4e43-4802-be5c-4ac4624df27f_cloudfoundrybutler.json index 6fea371..3d2d805 100644 --- a/server/src/data/split/92c07575-4e43-4802-be5c-4ac4624df27f_cloudfoundrybutler.json +++ b/server/src/data/split/92c07575-4e43-4802-be5c-4ac4624df27f_cloudfoundrybutler.json @@ -19,12 +19,12 @@ "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-04-14T13:56:05Z", + "updatedAt": "2025-04-28T11:56:34Z", "hubId": "92c07575-4e43-4802-be5c-4ac4624df27f", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "5c2891b0e2854795f72d6d256559e443e6644e84", + "githubLatestCommit": "a5135b1daa06554380d65233f63eefa2c6cfaa05", "githubForks": 1, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/92d5d188-6017-42bf-a3a0-9527cfc24a3b_kagisearch.json b/server/src/data/split/92d5d188-6017-42bf-a3a0-9527cfc24a3b_kagisearch.json index d0fad27..b90852a 100644 --- a/server/src/data/split/92d5d188-6017-42bf-a3a0-9527cfc24a3b_kagisearch.json +++ b/server/src/data/split/92d5d188-6017-42bf-a3a0-9527cfc24a3b_kagisearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 71, + "githubStars": 72, "downloadCount": 159, "createdAt": "2025-02-18T06:28:08.669226Z", "updatedAt": "2025-04-03T21:05:52Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "599e22ac84d0b83d2c9964513477357901f67893", - "githubForks": 12, + "githubForks": 13, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/93169dd7-ec02-4cf4-bc3c-69d842d01e3c_heroku.json b/server/src/data/split/93169dd7-ec02-4cf4-bc3c-69d842d01e3c_heroku.json index deaf735..e138d5a 100644 --- a/server/src/data/split/93169dd7-ec02-4cf4-bc3c-69d842d01e3c_heroku.json +++ b/server/src/data/split/93169dd7-ec02-4cf4-bc3c-69d842d01e3c_heroku.json @@ -12,13 +12,13 @@ "githubStars": 29, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-22T22:11:35Z", + "updatedAt": "2025-04-28T22:42:56Z", "hubId": "93169dd7-ec02-4cf4-bc3c-69d842d01e3c", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "heroku", - "githubLatestCommit": "ce17a831bef16104dfe0ad8e6c83eb20c3172778", + "githubLatestCommit": "bfb1312e051a11804a8f7a85b0a53da329201723", "githubForks": 7, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/962a8c6d-69e5-4936-a92b-af7805c11a6d_filesystempython.json b/server/src/data/split/962a8c6d-69e5-4936-a92b-af7805c11a6d_filesystempython.json index 6924d1a..3e056ec 100644 --- a/server/src/data/split/962a8c6d-69e5-4936-a92b-af7805c11a6d_filesystempython.json +++ b/server/src/data/split/962a8c6d-69e5-4936-a92b-af7805c11a6d_filesystempython.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 10, + "githubStars": 11, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", "updatedAt": "2025-01-04T20:06:29Z", diff --git a/server/src/data/split/9685e08f-8ff6-4b5b-ae7c-2fbdffc010dd_chatmcp.json b/server/src/data/split/9685e08f-8ff6-4b5b-ae7c-2fbdffc010dd_chatmcp.json index 2d89be0..e96f045 100644 --- a/server/src/data/split/9685e08f-8ff6-4b5b-ae7c-2fbdffc010dd_chatmcp.json +++ b/server/src/data/split/9685e08f-8ff6-4b5b-ae7c-2fbdffc010dd_chatmcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 177, + "githubStars": 178, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-12T08:38:12Z", diff --git a/server/src/data/split/98020362-8a38-40c0-8434-782d66cc8628_pinecone.json b/server/src/data/split/98020362-8a38-40c0-8434-782d66cc8628_pinecone.json index 23bb26b..057604e 100644 --- a/server/src/data/split/98020362-8a38-40c0-8434-782d66cc8628_pinecone.json +++ b/server/src/data/split/98020362-8a38-40c0-8434-782d66cc8628_pinecone.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 10, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-24T16:59:48Z", @@ -19,6 +19,6 @@ "isCommunityServer": false, "author": "pinecone-io", "githubLatestCommit": "f44e5a0c59e05ca565622799575fd95a96529b7a", - "githubForks": 3, + "githubForks": 4, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/986c6e2c-4cbe-455d-a304-9edaa67d312f_comfyui.json b/server/src/data/split/986c6e2c-4cbe-455d-a304-9edaa67d312f_comfyui.json index e76bffe..45fc4eb 100644 --- a/server/src/data/split/986c6e2c-4cbe-455d-a304-9edaa67d312f_comfyui.json +++ b/server/src/data/split/986c6e2c-4cbe-455d-a304-9edaa67d312f_comfyui.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "4e978c369da81b8e52af35223c4d36a645d52830", - "githubForks": 2, + "githubForks": 3, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/987deb3d-7a90-4c68-b25b-b6f6af93a6bd_magicui.json b/server/src/data/split/987deb3d-7a90-4c68-b25b-b6f6af93a6bd_magicui.json index fece789..833ebba 100644 --- a/server/src/data/split/987deb3d-7a90-4c68-b25b-b6f6af93a6bd_magicui.json +++ b/server/src/data/split/987deb3d-7a90-4c68-b25b-b6f6af93a6bd_magicui.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1551, + "githubStars": 1573, "downloadCount": 6292, "createdAt": "2025-03-03T06:37:07.504691Z", "updatedAt": "2025-04-15T09:20:08Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": false, "githubLatestCommit": "2a456c3738324ed0a8f540bfd484f68f305d6be9", - "githubForks": 113, + "githubForks": 115, "licenseType": null } \ No newline at end of file diff --git a/server/src/data/split/98bb0aa6-4f3f-4ca7-af2e-1ea629d4e6fe_apacheiotdb.json b/server/src/data/split/98bb0aa6-4f3f-4ca7-af2e-1ea629d4e6fe_apacheiotdb.json index 5c62471..4f1eda1 100644 --- a/server/src/data/split/98bb0aa6-4f3f-4ca7-af2e-1ea629d4e6fe_apacheiotdb.json +++ b/server/src/data/split/98bb0aa6-4f3f-4ca7-af2e-1ea629d4e6fe_apacheiotdb.json @@ -9,16 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 5756, + "githubStars": 5758, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-28T08:17:22Z", + "updatedAt": "2025-04-29T01:44:32Z", "hubId": "98bb0aa6-4f3f-4ca7-af2e-1ea629d4e6fe", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "apache", - "githubLatestCommit": "ed1f1b8cb37688057a2591c8222878692d2af2d4", - "githubForks": 1043, + "githubLatestCommit": "a0152af2b1defe1149386ae37d0a84149c0a96a2", + "githubForks": 1044, "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/98ebe885-3331-49a1-8659-eab84477ebe0_deepseek.json b/server/src/data/split/98ebe885-3331-49a1-8659-eab84477ebe0_deepseek.json index 51dc4d9..d742ab3 100644 --- a/server/src/data/split/98ebe885-3331-49a1-8659-eab84477ebe0_deepseek.json +++ b/server/src/data/split/98ebe885-3331-49a1-8659-eab84477ebe0_deepseek.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 216, + "githubStars": 217, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-02-03T00:24:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "40398b613ffb1cace8eeb51a962b93625d0a7642", - "githubForks": 22, + "githubForks": 23, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/9984c258-e385-4cd5-b60a-b402fc4a14fd_lspmcp.json b/server/src/data/split/9984c258-e385-4cd5-b60a-b402fc4a14fd_lspmcp.json index d7ab905..b5f23dc 100644 --- a/server/src/data/split/9984c258-e385-4cd5-b60a-b402fc4a14fd_lspmcp.json +++ b/server/src/data/split/9984c258-e385-4cd5-b60a-b402fc4a14fd_lspmcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 16, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-24T10:19:21Z", diff --git a/server/src/data/split/9a65264c-1f2f-4a58-abc7-9da445dcec3b_inkeep.json b/server/src/data/split/9a65264c-1f2f-4a58-abc7-9da445dcec3b_inkeep.json index 7cecd8b..419b7f3 100644 --- a/server/src/data/split/9a65264c-1f2f-4a58-abc7-9da445dcec3b_inkeep.json +++ b/server/src/data/split/9a65264c-1f2f-4a58-abc7-9da445dcec3b_inkeep.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 8, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-10T19:49:02Z", diff --git a/server/src/data/split/9a8b62b3-c339-49c5-8253-c33e5d7f9783_everart.json b/server/src/data/split/9a8b62b3-c339-49c5-8253-c33e5d7f9783_everart.json index 9a9d749..9b325a7 100644 --- a/server/src/data/split/9a8b62b3-c339-49c5-8253-c33e5d7f9783_everart.json +++ b/server/src/data/split/9a8b62b3-c339-49c5-8253-c33e5d7f9783_everart.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 41717, + "githubStars": 42042, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4616, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/9a911b6b-2225-48ef-b3b1-4b891b243ca7_letta.json b/server/src/data/split/9a911b6b-2225-48ef-b3b1-4b891b243ca7_letta.json index a529159..cd9a759 100644 --- a/server/src/data/split/9a911b6b-2225-48ef-b3b1-4b891b243ca7_letta.json +++ b/server/src/data/split/9a911b6b-2225-48ef-b3b1-4b891b243ca7_letta.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "254d6a208b13852d8bf871a7870e0396e6379f75", - "githubForks": 3, + "githubForks": 4, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/9bd326f1-630e-46a2-ba54-8313b7a0552b_mcpserverforinteractionwithofficeapps.json b/server/src/data/split/9bd326f1-630e-46a2-ba54-8313b7a0552b_mcpserverforinteractionwithofficeapps.json index 2605764..92053a3 100644 --- a/server/src/data/split/9bd326f1-630e-46a2-ba54-8313b7a0552b_mcpserverforinteractionwithofficeapps.json +++ b/server/src/data/split/9bd326f1-630e-46a2-ba54-8313b7a0552b_mcpserverforinteractionwithofficeapps.json @@ -16,15 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 263, + "githubStars": 265, "downloadCount": 0, "createdAt": "2025-04-05T15:10:51.535Z", - "updatedAt": "2025-04-25T23:00:18Z", + "updatedAt": "2025-04-29T00:47:17Z", "hubId": "9bd326f1-630e-46a2-ba54-8313b7a0552b", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "708adf0cd7b2454bae3c112057dfe09b80dea17c", + "githubLatestCommit": "7ee60c8e6529c03fda76bef36fe78452bb9a575e", "githubForks": 69, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/9c99ce40-b025-47dd-b0eb-95264afd3e74_macossystem.json b/server/src/data/split/9c99ce40-b025-47dd-b0eb-95264afd3e74_macossystem.json index cadcbe7..18d93a4 100644 --- a/server/src/data/split/9c99ce40-b025-47dd-b0eb-95264afd3e74_macossystem.json +++ b/server/src/data/split/9c99ce40-b025-47dd-b0eb-95264afd3e74_macossystem.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 40, + "githubStars": 41, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", "updatedAt": "2024-12-05T07:13:54Z", diff --git a/server/src/data/split/9cc533f1-2a77-4e01-ab91-17434d6cf9ba_macmessagesmcp.json b/server/src/data/split/9cc533f1-2a77-4e01-ab91-17434d6cf9ba_macmessagesmcp.json index 2953b9a..1a8f89f 100644 --- a/server/src/data/split/9cc533f1-2a77-4e01-ab91-17434d6cf9ba_macmessagesmcp.json +++ b/server/src/data/split/9cc533f1-2a77-4e01-ab91-17434d6cf9ba_macmessagesmcp.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 68, + "githubStars": 69, "downloadCount": 0, "createdAt": "2025-03-16T20:43:43.695524+00:00", "updatedAt": "2025-03-16T22:35:09Z", diff --git a/server/src/data/split/9d2217b8-d2c2-4829-b221-73cec1dc2930_milvus.json b/server/src/data/split/9d2217b8-d2c2-4829-b221-73cec1dc2930_milvus.json index 343f4b1..bfb037b 100644 --- a/server/src/data/split/9d2217b8-d2c2-4829-b221-73cec1dc2930_milvus.json +++ b/server/src/data/split/9d2217b8-d2c2-4829-b221-73cec1dc2930_milvus.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 91, + "githubStars": 93, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-25T08:11:38Z", diff --git a/server/src/data/split/9dbad271-8294-4b42-ab1d-897edde39ebc_nile.json b/server/src/data/split/9dbad271-8294-4b42-ab1d-897edde39ebc_nile.json index 70a1d25..433228d 100644 --- a/server/src/data/split/9dbad271-8294-4b42-ab1d-897edde39ebc_nile.json +++ b/server/src/data/split/9dbad271-8294-4b42-ab1d-897edde39ebc_nile.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "2177d221587a092a55681f663a0ae4f5ada6a320", - "githubForks": 4, + "githubForks": 5, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/9dcb3b7c-c648-4426-8e30-080d14d136df_codesandbox.json b/server/src/data/split/9dcb3b7c-c648-4426-8e30-080d14d136df_codesandbox.json index 5bf1dbb..5e0c40e 100644 --- a/server/src/data/split/9dcb3b7c-c648-4426-8e30-080d14d136df_codesandbox.json +++ b/server/src/data/split/9dcb3b7c-c648-4426-8e30-080d14d136df_codesandbox.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 144, + "githubStars": 146, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", "updatedAt": "2025-03-23T12:14:08Z", diff --git a/server/src/data/split/a06050de-b0f2-42b1-8eb2-88542d545863_easymcp.json b/server/src/data/split/a06050de-b0f2-42b1-8eb2-88542d545863_easymcp.json index 725ee9f..7b86b66 100644 --- a/server/src/data/split/a06050de-b0f2-42b1-8eb2-88542d545863_easymcp.json +++ b/server/src/data/split/a06050de-b0f2-42b1-8eb2-88542d545863_easymcp.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 128, + "githubStars": 129, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-01-20T01:46:48Z", diff --git a/server/src/data/split/a0e55310-a373-4dd4-93a0-6b26518938fc_obsidianmarkdownnotes.json b/server/src/data/split/a0e55310-a373-4dd4-93a0-6b26518938fc_obsidianmarkdownnotes.json index 27010f4..6d5252a 100644 --- a/server/src/data/split/a0e55310-a373-4dd4-93a0-6b26518938fc_obsidianmarkdownnotes.json +++ b/server/src/data/split/a0e55310-a373-4dd4-93a0-6b26518938fc_obsidianmarkdownnotes.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 762, + "githubStars": 768, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-17T23:31:08Z", diff --git a/server/src/data/split/a101a345-70f7-4467-befb-73ec7f71498e_bingsearch.json b/server/src/data/split/a101a345-70f7-4467-befb-73ec7f71498e_bingsearch.json index 899fbb7..7d3138c 100644 --- a/server/src/data/split/a101a345-70f7-4467-befb-73ec7f71498e_bingsearch.json +++ b/server/src/data/split/a101a345-70f7-4467-befb-73ec7f71498e_bingsearch.json @@ -15,15 +15,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 263, + "githubStars": 265, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-04-25T23:00:18Z", + "updatedAt": "2025-04-29T00:47:17Z", "hubId": "a101a345-70f7-4467-befb-73ec7f71498e", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "708adf0cd7b2454bae3c112057dfe09b80dea17c", + "githubLatestCommit": "7ee60c8e6529c03fda76bef36fe78452bb9a575e", "githubForks": 69, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a210ddff-8396-43cd-a620-99e4329fa6cf_falaiimagegeneration.json b/server/src/data/split/a210ddff-8396-43cd-a620-99e4329fa6cf_falaiimagegeneration.json index 924e7e9..f7bd758 100644 --- a/server/src/data/split/a210ddff-8396-43cd-a620-99e4329fa6cf_falaiimagegeneration.json +++ b/server/src/data/split/a210ddff-8396-43cd-a620-99e4329fa6cf_falaiimagegeneration.json @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "5192c277f3b6efd3d8233e2427c33aeb9fb6c836", - "githubForks": 13, + "githubForks": 14, "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/a2c3eb4f-bafb-4caa-80e5-6cd951c5d27a_fewsats.json b/server/src/data/split/a2c3eb4f-bafb-4caa-80e5-6cd951c5d27a_fewsats.json index 92386a4..b40599e 100644 --- a/server/src/data/split/a2c3eb4f-bafb-4caa-80e5-6cd951c5d27a_fewsats.json +++ b/server/src/data/split/a2c3eb4f-bafb-4caa-80e5-6cd951c5d27a_fewsats.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 12, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-15T17:13:54Z", diff --git a/server/src/data/split/a3e08cd0-0722-489b-9849-0878e8aca68d_mcplocalrag.json b/server/src/data/split/a3e08cd0-0722-489b-9849-0878e8aca68d_mcplocalrag.json index 7b04951..3845c63 100644 --- a/server/src/data/split/a3e08cd0-0722-489b-9849-0878e8aca68d_mcplocalrag.json +++ b/server/src/data/split/a3e08cd0-0722-489b-9849-0878e8aca68d_mcplocalrag.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 27, + "githubStars": 28, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-04-22T06:46:56Z", diff --git a/server/src/data/split/a410cb03-89d8-4f88-9ef6-5d5bbefddb6b_paradex.json b/server/src/data/split/a410cb03-89d8-4f88-9ef6-5d5bbefddb6b_paradex.json index 9fa1c67..13933bd 100644 --- a/server/src/data/split/a410cb03-89d8-4f88-9ef6-5d5bbefddb6b_paradex.json +++ b/server/src/data/split/a410cb03-89d8-4f88-9ef6-5d5bbefddb6b_paradex.json @@ -19,12 +19,12 @@ "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-04-28T08:09:54Z", + "updatedAt": "2025-04-29T05:47:25Z", "hubId": "a410cb03-89d8-4f88-9ef6-5d5bbefddb6b", "isOfficialIntegration": false, "isReferenceServer": false, "isCommunityServer": true, - "githubLatestCommit": "c35b324d28152eb9d160c2aed2129760268cd53f", + "githubLatestCommit": "c6d65bdf82e97ba4ea97624690a3290a0887d2f1", "githubForks": 1, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a437569c-42c2-466a-a155-eb74f7475cd3_knowledgegraphmemory.json b/server/src/data/split/a437569c-42c2-466a-a155-eb74f7475cd3_knowledgegraphmemory.json index 07bbc09..6562269 100644 --- a/server/src/data/split/a437569c-42c2-466a-a155-eb74f7475cd3_knowledgegraphmemory.json +++ b/server/src/data/split/a437569c-42c2-466a-a155-eb74f7475cd3_knowledgegraphmemory.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41718, + "githubStars": 42043, "downloadCount": 3655, "createdAt": "2025-02-17T22:22:24.982087Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4616, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a478ff5c-a9f4-49bb-a403-96cf5e706ddf_metamcp.json b/server/src/data/split/a478ff5c-a9f4-49bb-a403-96cf5e706ddf_metamcp.json index c9d66f8..64a042b 100644 --- a/server/src/data/split/a478ff5c-a9f4-49bb-a403-96cf5e706ddf_metamcp.json +++ b/server/src/data/split/a478ff5c-a9f4-49bb-a403-96cf5e706ddf_metamcp.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 82, + "githubStars": 84, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", "updatedAt": "2025-04-25T10:15:40Z", diff --git a/server/src/data/split/a4e94097-160a-4430-bcce-456f672b79d8_pubchem.json b/server/src/data/split/a4e94097-160a-4430-bcce-456f672b79d8_pubchem.json index 27478f7..acaa73c 100644 --- a/server/src/data/split/a4e94097-160a-4430-bcce-456f672b79d8_pubchem.json +++ b/server/src/data/split/a4e94097-160a-4430-bcce-456f672b79d8_pubchem.json @@ -9,7 +9,7 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", "updatedAt": "2025-03-26T02:32:37Z", diff --git a/server/src/data/split/a53446cf-528d-4c57-8040-0ff521a5d175_codacy.json b/server/src/data/split/a53446cf-528d-4c57-8040-0ff521a5d175_codacy.json index 004470d..ea45c86 100644 --- a/server/src/data/split/a53446cf-528d-4c57-8040-0ff521a5d175_codacy.json +++ b/server/src/data/split/a53446cf-528d-4c57-8040-0ff521a5d175_codacy.json @@ -12,13 +12,13 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-24T15:56:40Z", + "updatedAt": "2025-04-28T08:56:36Z", "hubId": "a53446cf-528d-4c57-8040-0ff521a5d175", "isOfficialIntegration": true, "isReferenceServer": false, "isCommunityServer": false, "author": "codacy", - "githubLatestCommit": "3a30cac870ee25efbe6cda69dcdab4ef55eb2c77", + "githubLatestCommit": "dfd23777031c1af84baeb24e8140bc57ffe97e1d", "githubForks": 1, "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/a54140b0-ac5b-4025-8bf7-7e514fa53093_sveltedocs.json b/server/src/data/split/a54140b0-ac5b-4025-8bf7-7e514fa53093_sveltedocs.json index 2c26d54..1835de9 100644 --- a/server/src/data/split/a54140b0-ac5b-4025-8bf7-7e514fa53093_sveltedocs.json +++ b/server/src/data/split/a54140b0-ac5b-4025-8bf7-7e514fa53093_sveltedocs.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 47, + "githubStars": 48, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2025-04-16T19:42:58Z", @@ -25,6 +25,6 @@ "isReferenceServer": false, "isCommunityServer": true, "githubLatestCommit": "db08680e247f061e59370c2cb29d3bf318349d36", - "githubForks": 5, + "githubForks": 6, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a54a9f3d-7372-401a-b71e-137b8e93864f_erickwendelcontributions.json b/server/src/data/split/a54a9f3d-7372-401a-b71e-137b8e93864f_erickwendelcontributions.json index cadccf3..6340de0 100644 --- a/server/src/data/split/a54a9f3d-7372-401a-b71e-137b8e93864f_erickwendelcontributions.json +++ b/server/src/data/split/a54a9f3d-7372-401a-b71e-137b8e93864f_erickwendelcontributions.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 88, + "githubStars": 90, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", "updatedAt": "2025-03-15T16:25:02Z", diff --git a/server/src/data/split/a57190bb-65f4-4043-93db-7d471a1ca4a4_jinaai.json b/server/src/data/split/a57190bb-65f4-4043-93db-7d471a1ca4a4_jinaai.json index e4b5f92..23b3dc5 100644 --- a/server/src/data/split/a57190bb-65f4-4043-93db-7d471a1ca4a4_jinaai.json +++ b/server/src/data/split/a57190bb-65f4-4043-93db-7d471a1ca4a4_jinaai.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 25, + "githubStars": 26, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", "updatedAt": "2025-04-05T11:39:33Z", diff --git a/server/src/data/split/a5ab8226-be82-4126-9139-5c5c7f452c82_bravesearch.json b/server/src/data/split/a5ab8226-be82-4126-9139-5c5c7f452c82_bravesearch.json index b7bbeb1..dc04d8d 100644 --- a/server/src/data/split/a5ab8226-be82-4126-9139-5c5c7f452c82_bravesearch.json +++ b/server/src/data/split/a5ab8226-be82-4126-9139-5c5c7f452c82_bravesearch.json @@ -16,7 +16,7 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 41718, + "githubStars": 42043, "downloadCount": 6072, "createdAt": "2025-02-17T22:22:18.563691Z", "updatedAt": "2025-04-27T13:54:22Z", @@ -25,6 +25,6 @@ "isReferenceServer": true, "isCommunityServer": false, "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", - "githubForks": 4575, + "githubForks": 4616, "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a60e40f5-4c3d-4624-bc30-900d1f59eaca_davinciresolve.json b/server/src/data/split/a60e40f5-4c3d-4624-bc30-900d1f59eaca_davinciresolve.json index 9f91341..3ac64bf 100644 --- a/server/src/data/split/a60e40f5-4c3d-4624-bc30-900d1f59eaca_davinciresolve.json +++ b/server/src/data/split/a60e40f5-4c3d-4624-bc30-900d1f59eaca_davinciresolve.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 150, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-02T02:35:08Z", "hubId": "a60e40f5-4c3d-4624-bc30-900d1f59eaca", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "samuelgursky", + "githubLatestCommit": "19dc53236193de61f79facc731024a75d3c3be5c", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a6474be2-5bc9-4b2f-afd1-ca25338ca0cb_googlemaps.json b/server/src/data/split/a6474be2-5bc9-4b2f-afd1-ca25338ca0cb_googlemaps.json index 83eca5d..c62af63 100644 --- a/server/src/data/split/a6474be2-5bc9-4b2f-afd1-ca25338ca0cb_googlemaps.json +++ b/server/src/data/split/a6474be2-5bc9-4b2f-afd1-ca25338ca0cb_googlemaps.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42043, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "a6474be2-5bc9-4b2f-afd1-ca25338ca0cb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4616, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a6484735-e78b-4c46-9028-fc409ba8dcf5_datasetviewer.json b/server/src/data/split/a6484735-e78b-4c46-9028-fc409ba8dcf5_datasetviewer.json index 928a726..e0cc2b7 100644 --- a/server/src/data/split/a6484735-e78b-4c46-9028-fc409ba8dcf5_datasetviewer.json +++ b/server/src/data/split/a6484735-e78b-4c46-9028-fc409ba8dcf5_datasetviewer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-25T08:58:09Z", "hubId": "a6484735-e78b-4c46-9028-fc409ba8dcf5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b1a340430a2e7f5c388e6d8676ad5366c1f18f2a", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a655af90-b157-466f-85ae-1bbf57a15497_brianknows.json b/server/src/data/split/a655af90-b157-466f-85ae-1bbf57a15497_brianknows.json index 89848fe..46c1b1b 100644 --- a/server/src/data/split/a655af90-b157-466f-85ae-1bbf57a15497_brianknows.json +++ b/server/src/data/split/a655af90-b157-466f-85ae-1bbf57a15497_brianknows.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-13T16:48:31Z", "hubId": "a655af90-b157-466f-85ae-1bbf57a15497", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "224b53e7d8a4be4b382e95bfc04929efcc099776", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/a6842180-6b98-42b2-8fb9-ee3fc9196947_aiagentmarketplaceindex.json b/server/src/data/split/a6842180-6b98-42b2-8fb9-ee3fc9196947_aiagentmarketplaceindex.json index 223e466..8c79e11 100644 --- a/server/src/data/split/a6842180-6b98-42b2-8fb9-ee3fc9196947_aiagentmarketplaceindex.json +++ b/server/src/data/split/a6842180-6b98-42b2-8fb9-ee3fc9196947_aiagentmarketplaceindex.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-05T15:32:07Z", "hubId": "a6842180-6b98-42b2-8fb9-ee3fc9196947", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "AI-Agent-Hub", + "githubLatestCommit": "10b3ac7fb5a90ad2cdc9f7828aa72f6ae677dfb2", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/a68a5be1-480a-42f9-aa0c-2f4cabe07d04_jira.json b/server/src/data/split/a68a5be1-480a-42f9-aa0c-2f4cabe07d04_jira.json index 43780e6..d79523c 100644 --- a/server/src/data/split/a68a5be1-480a-42f9-aa0c-2f4cabe07d04_jira.json +++ b/server/src/data/split/a68a5be1-480a-42f9-aa0c-2f4cabe07d04_jira.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-04-09T13:13:27Z", "hubId": "a68a5be1-480a-42f9-aa0c-2f4cabe07d04", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "be4f193f438dfe55e2f4274cb5d9641626147a14", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/a68e5d15-2989-4825-900e-422ab64f86e3_jsonschemamanager.json b/server/src/data/split/a68e5d15-2989-4825-900e-422ab64f86e3_jsonschemamanager.json index 654d952..98fec61 100644 --- a/server/src/data/split/a68e5d15-2989-4825-900e-422ab64f86e3_jsonschemamanager.json +++ b/server/src/data/split/a68e5d15-2989-4825-900e-422ab64f86e3_jsonschemamanager.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-09T07:28:23Z", "hubId": "a68e5d15-2989-4825-900e-422ab64f86e3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6b64ed1a33d8ba934980194c4e6dd20de2802881", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/a69c3085-e5e1-4968-ac19-47e52bb92396_neovimintegration.json b/server/src/data/split/a69c3085-e5e1-4968-ac19-47e52bb92396_neovimintegration.json index 17011dc..81c80da 100644 --- a/server/src/data/split/a69c3085-e5e1-4968-ac19-47e52bb92396_neovimintegration.json +++ b/server/src/data/split/a69c3085-e5e1-4968-ac19-47e52bb92396_neovimintegration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 117, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-03-30T20:26:35Z", "hubId": "a69c3085-e5e1-4968-ac19-47e52bb92396", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9e2f38c4a6b62792a7ae2413eae8291d9a1c24f8", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a6a4c5b5-222b-4ed9-aea2-91b03124183c_youtubewatchlater.json b/server/src/data/split/a6a4c5b5-222b-4ed9-aea2-91b03124183c_youtubewatchlater.json index 6fe1a84..ee80e86 100644 --- a/server/src/data/split/a6a4c5b5-222b-4ed9-aea2-91b03124183c_youtubewatchlater.json +++ b/server/src/data/split/a6a4c5b5-222b-4ed9-aea2-91b03124183c_youtubewatchlater.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-23T12:24:31Z", "hubId": "a6a4c5b5-222b-4ed9-aea2-91b03124183c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b088610fb5ee3a22e54fbf6eece4ae6a2c0116a5", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a6ae30c6-f8d8-4492-b9ab-e9dfa4944e5f_personalhealthtracker.json b/server/src/data/split/a6ae30c6-f8d8-4492-b9ab-e9dfa4944e5f_personalhealthtracker.json index 3a54dbb..fddaed1 100644 --- a/server/src/data/split/a6ae30c6-f8d8-4492-b9ab-e9dfa4944e5f_personalhealthtracker.json +++ b/server/src/data/split/a6ae30c6-f8d8-4492-b9ab-e9dfa4944e5f_personalhealthtracker.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-08T07:30:17Z", "hubId": "a6ae30c6-f8d8-4492-b9ab-e9dfa4944e5f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ec50e05526ae58d1079f2bc52eaa32dc2096ddc1", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/a6c1bca8-14f4-4a58-926b-e07f92ac7b33_literaturememory.json b/server/src/data/split/a6c1bca8-14f4-4a58-926b-e07f92ac7b33_literaturememory.json index c2eed32..8b78bfc 100644 --- a/server/src/data/split/a6c1bca8-14f4-4a58-926b-e07f92ac7b33_literaturememory.json +++ b/server/src/data/split/a6c1bca8-14f4-4a58-926b-e07f92ac7b33_literaturememory.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2024-12-26T19:39:22Z", "hubId": "a6c1bca8-14f4-4a58-926b-e07f92ac7b33", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "00d515be0c553816d3ee7bdc1d1cceaaade80859", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/a6fc56de-f8cd-4f70-ba10-0733dca2058b_telegram.json b/server/src/data/split/a6fc56de-f8cd-4f70-ba10-0733dca2058b_telegram.json index 6c8fc74..7648b5c 100644 --- a/server/src/data/split/a6fc56de-f8cd-4f70-ba10-0733dca2058b_telegram.json +++ b/server/src/data/split/a6fc56de-f8cd-4f70-ba10-0733dca2058b_telegram.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 77, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-14T11:27:58Z", "hubId": "a6fc56de-f8cd-4f70-ba10-0733dca2058b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c524633eec4e37797a255efaa702af091c9d709a", + "githubForks": 11, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a71b5582-00bc-4fbd-ae8d-e68cf60c4e33_microsoftsqlservermssql.json b/server/src/data/split/a71b5582-00bc-4fbd-ae8d-e68cf60c4e33_microsoftsqlservermssql.json index 6adf52d..f0eb0bb 100644 --- a/server/src/data/split/a71b5582-00bc-4fbd-ae8d-e68cf60c4e33_microsoftsqlservermssql.json +++ b/server/src/data/split/a71b5582-00bc-4fbd-ae8d-e68cf60c4e33_microsoftsqlservermssql.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 78, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-07T15:10:56Z", "hubId": "a71b5582-00bc-4fbd-ae8d-e68cf60c4e33", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1ce6e9d926bd4e543c80cbcc3020b18046af9dba", + "githubForks": 14, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a72c70a5-e44c-4daa-9dc5-20942793d4b0_slack.json b/server/src/data/split/a72c70a5-e44c-4daa-9dc5-20942793d4b0_slack.json index b14e16a..2a0e85f 100644 --- a/server/src/data/split/a72c70a5-e44c-4daa-9dc5-20942793d4b0_slack.json +++ b/server/src/data/split/a72c70a5-e44c-4daa-9dc5-20942793d4b0_slack.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-26T17:00:15Z", "hubId": "a72c70a5-e44c-4daa-9dc5-20942793d4b0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "korotovsky", + "githubLatestCommit": "66fdb8af39d953d116488960be327e7411714976", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a730af79-c834-4e98-bc88-efee6947fb00_agentrpc.json b/server/src/data/split/a730af79-c834-4e98-bc88-efee6947fb00_agentrpc.json index ffd0215..720455d 100644 --- a/server/src/data/split/a730af79-c834-4e98-bc88-efee6947fb00_agentrpc.json +++ b/server/src/data/split/a730af79-c834-4e98-bc88-efee6947fb00_agentrpc.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 65, "downloadCount": 0, "createdAt": "2025-03-19T22:00:40.798554+00:00", - "updatedAt": "2025-03-19T22:00:40.798554+00:00", + "updatedAt": "2025-03-21T00:20:56Z", "hubId": "a730af79-c834-4e98-bc88-efee6947fb00", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "eb5850712a49c9b90a176983b5d19f6a6a029148", + "githubForks": 16, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a741f78c-2b85-4c8c-ae58-a74d1ac884bd_openhue.json b/server/src/data/split/a741f78c-2b85-4c8c-ae58-a74d1ac884bd_openhue.json index 2b3e7f7..a4371ab 100644 --- a/server/src/data/split/a741f78c-2b85-4c8c-ae58-a74d1ac884bd_openhue.json +++ b/server/src/data/split/a741f78c-2b85-4c8c-ae58-a74d1ac884bd_openhue.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2024-12-24T15:49:55Z", "hubId": "a741f78c-2b85-4c8c-ae58-a74d1ac884bd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ccbf05d1c61636b1b5d21671e44d9c0547bcdb93", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a7dae663-3cad-4e47-8c17-ad509eacab1d_elasticsearch7x.json b/server/src/data/split/a7dae663-3cad-4e47-8c17-ad509eacab1d_elasticsearch7x.json index 7c7e256..58349df 100644 --- a/server/src/data/split/a7dae663-3cad-4e47-8c17-ad509eacab1d_elasticsearch7x.json +++ b/server/src/data/split/a7dae663-3cad-4e47-8c17-ad509eacab1d_elasticsearch7x.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-04-13T13:05:40Z", "hubId": "a7dae663-3cad-4e47-8c17-ad509eacab1d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1f9edcd457331397f1f9350c4f4f9ec58b49d378", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a7ffa004-b367-43e1-9183-d4f05c4aa978_dockerexecutor.json b/server/src/data/split/a7ffa004-b367-43e1-9183-d4f05c4aa978_dockerexecutor.json index 9f14c2f..52fa8eb 100644 --- a/server/src/data/split/a7ffa004-b367-43e1-9183-d4f05c4aa978_dockerexecutor.json +++ b/server/src/data/split/a7ffa004-b367-43e1-9183-d4f05c4aa978_dockerexecutor.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-11T20:18:24Z", "hubId": "a7ffa004-b367-43e1-9183-d4f05c4aa978", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1721b205595aed15df5aa99a0524992de428284e", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a8093979-2115-41f5-967c-8b577715b490_deepresearch.json b/server/src/data/split/a8093979-2115-41f5-967c-8b577715b490_deepresearch.json index 8912900..4aef7c2 100644 --- a/server/src/data/split/a8093979-2115-41f5-967c-8b577715b490_deepresearch.json +++ b/server/src/data/split/a8093979-2115-41f5-967c-8b577715b490_deepresearch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-22T18:38:22Z", "hubId": "a8093979-2115-41f5-967c-8b577715b490", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "586eea7fcf2d01997d40ae938de957fd7cf323ad", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/a88bd410-d404-4d27-91db-305974f79120_markdownify.json b/server/src/data/split/a88bd410-d404-4d27-91db-305974f79120_markdownify.json index a047221..79dc214 100644 --- a/server/src/data/split/a88bd410-d404-4d27-91db-305974f79120_markdownify.json +++ b/server/src/data/split/a88bd410-d404-4d27-91db-305974f79120_markdownify.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 1058, + "githubStars": 1484, "downloadCount": 3570, "createdAt": "2025-02-19T00:55:54.241944Z", - "updatedAt": "2025-02-19T00:55:54.241944Z", + "updatedAt": "2025-01-24T14:22:44Z", "hubId": "a88bd410-d404-4d27-91db-305974f79120", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "949f12e633320548c565c6ec892d33695b158d64", + "githubForks": 111, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a8b33123-f6e1-47be-a589-23f8159e404a_telegram.json b/server/src/data/split/a8b33123-f6e1-47be-a589-23f8159e404a_telegram.json index 57b12df..5ed2676 100644 --- a/server/src/data/split/a8b33123-f6e1-47be-a589-23f8159e404a_telegram.json +++ b/server/src/data/split/a8b33123-f6e1-47be-a589-23f8159e404a_telegram.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-18T20:56:05Z", "hubId": "a8b33123-f6e1-47be-a589-23f8159e404a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d09a6a22f04a369e319380f67a96980adcf208da", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/a8ec1724-5e22-4948-8e82-25ea0736994e_neo4jgraph.json b/server/src/data/split/a8ec1724-5e22-4948-8e82-25ea0736994e_neo4jgraph.json index 74c36a0..52565f4 100644 --- a/server/src/data/split/a8ec1724-5e22-4948-8e82-25ea0736994e_neo4jgraph.json +++ b/server/src/data/split/a8ec1724-5e22-4948-8e82-25ea0736994e_neo4jgraph.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-11T09:43:36Z", "hubId": "a8ec1724-5e22-4948-8e82-25ea0736994e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e0010cf7861692bcd93400c46706e45d675d0199", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/a90d6f40-cbe3-43a9-b700-49e1223479bc_codesnippetss3.json b/server/src/data/split/a90d6f40-cbe3-43a9-b700-49e1223479bc_codesnippetss3.json index e172ae2..0f712b9 100644 --- a/server/src/data/split/a90d6f40-cbe3-43a9-b700-49e1223479bc_codesnippetss3.json +++ b/server/src/data/split/a90d6f40-cbe3-43a9-b700-49e1223479bc_codesnippetss3.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-01-16T20:53:36Z", "hubId": "a90d6f40-cbe3-43a9-b700-49e1223479bc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9ff3887c6a30decc9c7e692adae7463fdb30d003", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/a92966cd-1cfa-486d-95d4-4e07095e55dc_markdownify.json b/server/src/data/split/a92966cd-1cfa-486d-95d4-4e07095e55dc_markdownify.json index cce6bf9..6e8bb44 100644 --- a/server/src/data/split/a92966cd-1cfa-486d-95d4-4e07095e55dc_markdownify.json +++ b/server/src/data/split/a92966cd-1cfa-486d-95d4-4e07095e55dc_markdownify.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1484, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-01-24T14:22:44Z", "hubId": "a92966cd-1cfa-486d-95d4-4e07095e55dc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "zcaceres", + "githubLatestCommit": "949f12e633320548c565c6ec892d33695b158d64", + "githubForks": 111, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a9375fcc-45b7-45f5-bdcd-3084cc71add2_figmanodeexplorer.json b/server/src/data/split/a9375fcc-45b7-45f5-bdcd-3084cc71add2_figmanodeexplorer.json index bc660e2..67449fb 100644 --- a/server/src/data/split/a9375fcc-45b7-45f5-bdcd-3084cc71add2_figmanodeexplorer.json +++ b/server/src/data/split/a9375fcc-45b7-45f5-bdcd-3084cc71add2_figmanodeexplorer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-24T20:32:28Z", "hubId": "a9375fcc-45b7-45f5-bdcd-3084cc71add2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "92d69950c740e8bbcd77d0e6533d2bfbbe9519e2", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a9395c66-a4a1-4a42-9062-06d7475ab9ba_honk.json b/server/src/data/split/a9395c66-a4a1-4a42-9062-06d7475ab9ba_honk.json index 0f2c111..efba5ae 100644 --- a/server/src/data/split/a9395c66-a4a1-4a42-9062-06d7475ab9ba_honk.json +++ b/server/src/data/split/a9395c66-a4a1-4a42-9062-06d7475ab9ba_honk.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-27T21:47:43Z", "hubId": "a9395c66-a4a1-4a42-9062-06d7475ab9ba", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "32d7abb98c3b9a1b02e06355e8fa48c56346086a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/a9405542-f163-4c9c-a652-6d512a003244_tasksorganizer.json b/server/src/data/split/a9405542-f163-4c9c-a652-6d512a003244_tasksorganizer.json index 4019a22..2e21da7 100644 --- a/server/src/data/split/a9405542-f163-4c9c-a652-6d512a003244_tasksorganizer.json +++ b/server/src/data/split/a9405542-f163-4c9c-a652-6d512a003244_tasksorganizer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-02T07:17:33Z", "hubId": "a9405542-f163-4c9c-a652-6d512a003244", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "74c7e9ad8ae5b8d395456a1b512f08e846d16207", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a9479835-82d3-4150-9a38-c314bcebcb38_yolocomputervision.json b/server/src/data/split/a9479835-82d3-4150-9a38-c314bcebcb38_yolocomputervision.json index e6483db..a1f528c 100644 --- a/server/src/data/split/a9479835-82d3-4150-9a38-c314bcebcb38_yolocomputervision.json +++ b/server/src/data/split/a9479835-82d3-4150-9a38-c314bcebcb38_yolocomputervision.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-11T07:08:46Z", "hubId": "a9479835-82d3-4150-9a38-c314bcebcb38", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7d249443e7756edf00354ecbbbb71ed44f9a8b28", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a94d5183-87ac-403f-985e-fe31994f42bb_timeplus.json b/server/src/data/split/a94d5183-87ac-403f-985e-fe31994f42bb_timeplus.json index 609c88e..ff05c3f 100644 --- a/server/src/data/split/a94d5183-87ac-403f-985e-fe31994f42bb_timeplus.json +++ b/server/src/data/split/a94d5183-87ac-403f-985e-fe31994f42bb_timeplus.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-07T18:07:26Z", "hubId": "a94d5183-87ac-403f-985e-fe31994f42bb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b5fd504221f470f4eb02b1a0368709d9a0710cef", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a9583e8b-9f59-442e-9670-e77083aff4ab_mcpcli.json b/server/src/data/split/a9583e8b-9f59-442e-9670-e77083aff4ab_mcpcli.json index b473d78..3ab1676 100644 --- a/server/src/data/split/a9583e8b-9f59-442e-9670-e77083aff4ab_mcpcli.json +++ b/server/src/data/split/a9583e8b-9f59-442e-9670-e77083aff4ab_mcpcli.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 286, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-18T07:35:30Z", "hubId": "a9583e8b-9f59-442e-9670-e77083aff4ab", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "wong2", + "githubLatestCommit": "416c8e68df2c7545a4aa61bfe7ae01e5a7e470be", + "githubForks": 19, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/a9731ad9-c005-482d-8150-df5fd1841403_nomadmcp.json b/server/src/data/split/a9731ad9-c005-482d-8150-df5fd1841403_nomadmcp.json index ef69226..1c5b675 100644 --- a/server/src/data/split/a9731ad9-c005-482d-8150-df5fd1841403_nomadmcp.json +++ b/server/src/data/split/a9731ad9-c005-482d-8150-df5fd1841403_nomadmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-24T11:06:52Z", "hubId": "a9731ad9-c005-482d-8150-df5fd1841403", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "kocierik", + "githubLatestCommit": "d82c071c7e8eea8d9f6d1fa816ed5870ba5e5c38", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a97c9762-2db1-43f1-b4f3-67baed3d5142_typescriptmcpsdk.json b/server/src/data/split/a97c9762-2db1-43f1-b4f3-67baed3d5142_typescriptmcpsdk.json index 6e6b2af..cb26087 100644 --- a/server/src/data/split/a97c9762-2db1-43f1-b4f3-67baed3d5142_typescriptmcpsdk.json +++ b/server/src/data/split/a97c9762-2db1-43f1-b4f3-67baed3d5142_typescriptmcpsdk.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10937, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-26T18:41:19Z", "hubId": "a97c9762-2db1-43f1-b4f3-67baed3d5142", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "modelcontextprotocol", + "githubLatestCommit": "697b6e8e05accf6c9dc16627319e2e12ce4b5d5c", + "githubForks": 1178, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a98d6da4-ca1e-478b-87b0-623a7d7e856f_atlas.json b/server/src/data/split/a98d6da4-ca1e-478b-87b0-623a7d7e856f_atlas.json index c4beb13..47a7216 100644 --- a/server/src/data/split/a98d6da4-ca1e-478b-87b0-623a7d7e856f_atlas.json +++ b/server/src/data/split/a98d6da4-ca1e-478b-87b0-623a7d7e856f_atlas.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 131, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-25T15:42:02Z", "hubId": "a98d6da4-ca1e-478b-87b0-623a7d7e856f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "258305d69879545f45dd17c5b2a9435041b25b59", + "githubForks": 23, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a9b0bd85-aa49-4494-9654-3b655cf5663a_vcdwaveformanalyzer.json b/server/src/data/split/a9b0bd85-aa49-4494-9654-3b655cf5663a_vcdwaveformanalyzer.json index be8e340..e217215 100644 --- a/server/src/data/split/a9b0bd85-aa49-4494-9654-3b655cf5663a_vcdwaveformanalyzer.json +++ b/server/src/data/split/a9b0bd85-aa49-4494-9654-3b655cf5663a_vcdwaveformanalyzer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2024-12-23T18:16:18Z", "hubId": "a9b0bd85-aa49-4494-9654-3b655cf5663a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "be225d57d37c8e1c33dc0229775f67ef1a4dc9c3", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/a9b142dd-fe34-4c3f-ad8c-e0b7aeae7d50_oatppmcp.json b/server/src/data/split/a9b142dd-fe34-4c3f-ad8c-e0b7aeae7d50_oatppmcp.json index 14968c9..4223c82 100644 --- a/server/src/data/split/a9b142dd-fe34-4c3f-ad8c-e0b7aeae7d50_oatppmcp.json +++ b/server/src/data/split/a9b142dd-fe34-4c3f-ad8c-e0b7aeae7d50_oatppmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 39, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2024-12-13T03:56:59Z", "hubId": "a9b142dd-fe34-4c3f-ad8c-e0b7aeae7d50", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "oatpp", + "githubLatestCommit": "c9a9434af1ccb6707b79868b4330ae30a4a23834", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a9b26a50-62ba-45b7-89a6-d167dc7a38fe_sshtools.json b/server/src/data/split/a9b26a50-62ba-45b7-89a6-d167dc7a38fe_sshtools.json index b766677..8f40727 100644 --- a/server/src/data/split/a9b26a50-62ba-45b7-89a6-d167dc7a38fe_sshtools.json +++ b/server/src/data/split/a9b26a50-62ba-45b7-89a6-d167dc7a38fe_sshtools.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-13T06:58:53Z", "hubId": "a9b26a50-62ba-45b7-89a6-d167dc7a38fe", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6b0329222f4394cca242f8760e4f93da648372fd", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/a9c4e929-ec62-4398-9af3-c1549c551569_aiven.json b/server/src/data/split/a9c4e929-ec62-4398-9af3-c1549c551569_aiven.json index c0b7108..ea7abf2 100644 --- a/server/src/data/split/a9c4e929-ec62-4398-9af3-c1549c551569_aiven.json +++ b/server/src/data/split/a9c4e929-ec62-4398-9af3-c1549c551569_aiven.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-19T12:21:02Z", "hubId": "a9c4e929-ec62-4398-9af3-c1549c551569", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "Aiven-Open", + "githubLatestCommit": "297e5bd5ee93517f53e4f779d4eb6d52721794a0", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/a9f53cb1-2b09-4c1d-91d0-214abea17bca_blender.json b/server/src/data/split/a9f53cb1-2b09-4c1d-91d0-214abea17bca_blender.json index 03d0c8a..91739b8 100644 --- a/server/src/data/split/a9f53cb1-2b09-4c1d-91d0-214abea17bca_blender.json +++ b/server/src/data/split/a9f53cb1-2b09-4c1d-91d0-214abea17bca_blender.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 8094, + "githubStars": 10581, "downloadCount": 4327, "createdAt": "2025-03-17T01:52:54.102355Z", - "updatedAt": "2025-03-17T01:52:54.102355Z", + "updatedAt": "2025-04-16T23:54:35Z", "hubId": "a9f53cb1-2b09-4c1d-91d0-214abea17bca", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "972096e9dc0183c0ac72a5391a99c99533c7f783", + "githubForks": 934, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/aa00751a-37a2-4291-96f0-350bcccfd629_custommodesroocode.json b/server/src/data/split/aa00751a-37a2-4291-96f0-350bcccfd629_custommodesroocode.json index 88bb190..4071a51 100644 --- a/server/src/data/split/aa00751a-37a2-4291-96f0-350bcccfd629_custommodesroocode.json +++ b/server/src/data/split/aa00751a-37a2-4291-96f0-350bcccfd629_custommodesroocode.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-25T15:39:59Z", "hubId": "aa00751a-37a2-4291-96f0-350bcccfd629", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9fc8e9a7cd4b8c03d4cf0da04573f96657f6ed58", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/aa14f158-4f65-48ad-b6dc-f7f142d3667d_weather.json b/server/src/data/split/aa14f158-4f65-48ad-b6dc-f7f142d3667d_weather.json index 0140639..f222836 100644 --- a/server/src/data/split/aa14f158-4f65-48ad-b6dc-f7f142d3667d_weather.json +++ b/server/src/data/split/aa14f158-4f65-48ad-b6dc-f7f142d3667d_weather.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-16T01:28:43Z", "hubId": "aa14f158-4f65-48ad-b6dc-f7f142d3667d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dbbb4a326c054fa57cc7955637ab5f413a9bc096", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/aa36a389-ddf4-4746-bf57-804d25b9d877_swaggerapi.json b/server/src/data/split/aa36a389-ddf4-4746-bf57-804d25b9d877_swaggerapi.json index c66993c..83dca79 100644 --- a/server/src/data/split/aa36a389-ddf4-4746-bf57-804d25b9d877_swaggerapi.json +++ b/server/src/data/split/aa36a389-ddf4-4746-bf57-804d25b9d877_swaggerapi.json @@ -2,7 +2,7 @@ "mcpId": "github.com/readingdancer/Swagger-MCP", "githubUrl": "https://github.com/readingdancer/Swagger-MCP", "name": "Swagger API", - "author": "readingdancer", + "author": "Vizioz", "description": "Integrates with Swagger API specifications to download, cache, and extract endpoints, HTTP methods, models, and service connections for generating API interfaces from Swagger documentation.", "codiconIcon": "swagger", "logoUrl": "", @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-28T03:00:20Z", "hubId": "aa36a389-ddf4-4746-bf57-804d25b9d877", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "86a97c9f2c118420bd2fc49e25d64d1877a894a1", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/aaacfcfd-e17e-42a6-aacb-86ed80281cec_textwell.json b/server/src/data/split/aaacfcfd-e17e-42a6-aacb-86ed80281cec_textwell.json index 9461836..7a03ae3 100644 --- a/server/src/data/split/aaacfcfd-e17e-42a6-aacb-86ed80281cec_textwell.json +++ b/server/src/data/split/aaacfcfd-e17e-42a6-aacb-86ed80281cec_textwell.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-17T13:30:13Z", "hubId": "aaacfcfd-e17e-42a6-aacb-86ed80281cec", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "112ca00789fba1e4c7048a2dfdc58c3ada2eeace", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/aab0604b-2195-44f9-8947-5d6c2ded4a19_macosnotifier.json b/server/src/data/split/aab0604b-2195-44f9-8947-5d6c2ded4a19_macosnotifier.json index d695da4..bafdafd 100644 --- a/server/src/data/split/aab0604b-2195-44f9-8947-5d6c2ded4a19_macosnotifier.json +++ b/server/src/data/split/aab0604b-2195-44f9-8947-5d6c2ded4a19_macosnotifier.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 11, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2024-12-23T16:16:13Z", "hubId": "aab0604b-2195-44f9-8947-5d6c2ded4a19", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0de8ecebe81bed239d24d523cbe36d72d8983922", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/aae7dbbb-cdf1-4aac-99e0-5a44e28813de_codeanalyzer.json b/server/src/data/split/aae7dbbb-cdf1-4aac-99e0-5a44e28813de_codeanalyzer.json index 895888b..99a3837 100644 --- a/server/src/data/split/aae7dbbb-cdf1-4aac-99e0-5a44e28813de_codeanalyzer.json +++ b/server/src/data/split/aae7dbbb-cdf1-4aac-99e0-5a44e28813de_codeanalyzer.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-04T19:32:25Z", "hubId": "aae7dbbb-cdf1-4aac-99e0-5a44e28813de", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4f5f0bd1cca2990218072e3d5f74144b14dca9f1", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ab159ea8-3f6a-494c-8915-16b2573a509b_audioplayback.json b/server/src/data/split/ab159ea8-3f6a-494c-8915-16b2573a509b_audioplayback.json index 8cec3ba..b2d3c12 100644 --- a/server/src/data/split/ab159ea8-3f6a-494c-8915-16b2573a509b_audioplayback.json +++ b/server/src/data/split/ab159ea8-3f6a-494c-8915-16b2573a509b_audioplayback.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2024-12-26T08:00:13Z", "hubId": "ab159ea8-3f6a-494c-8915-16b2573a509b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0d30fdd17706f9d7037f331cabc08c2f6531e8d9", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ab163618-5844-4dfd-a191-757056af3767_mcpproxyserver.json b/server/src/data/split/ab163618-5844-4dfd-a191-757056af3767_mcpproxyserver.json index c79d641..022d015 100644 --- a/server/src/data/split/ab163618-5844-4dfd-a191-757056af3767_mcpproxyserver.json +++ b/server/src/data/split/ab163618-5844-4dfd-a191-757056af3767_mcpproxyserver.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 171, "downloadCount": 0, "createdAt": "2025-04-27T15:33:15.229Z", - "updatedAt": "2025-04-27T15:33:15.229Z", + "updatedAt": "2025-04-27T09:27:00Z", "hubId": "ab163618-5844-4dfd-a191-757056af3767", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "TBXark", + "githubLatestCommit": "dae18457a30ab419b8c2d40d9a4b66681781a4f9", + "githubForks": 17, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ab1cdb71-0ced-45b0-88a3-b428f189a0ea_langchainintegration.json b/server/src/data/split/ab1cdb71-0ced-45b0-88a3-b428f189a0ea_langchainintegration.json index e65310e..59cae95 100644 --- a/server/src/data/split/ab1cdb71-0ced-45b0-88a3-b428f189a0ea_langchainintegration.json +++ b/server/src/data/split/ab1cdb71-0ced-45b0-88a3-b428f189a0ea_langchainintegration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 180, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-02T15:18:35Z", "hubId": "ab1cdb71-0ced-45b0-88a3-b428f189a0ea", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dfa5b6b396bd5209ca36295b26c7eed865555c39", + "githubForks": 16, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ab3d89cb-0d3a-4cda-a82a-38e67e1c1f2c_elasticsearch.json b/server/src/data/split/ab3d89cb-0d3a-4cda-a82a-38e67e1c1f2c_elasticsearch.json index a7c48d0..deb21f7 100644 --- a/server/src/data/split/ab3d89cb-0d3a-4cda-a82a-38e67e1c1f2c_elasticsearch.json +++ b/server/src/data/split/ab3d89cb-0d3a-4cda-a82a-38e67e1c1f2c_elasticsearch.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 146, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-24T07:48:00Z", "hubId": "ab3d89cb-0d3a-4cda-a82a-38e67e1c1f2c", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "elastic", + "githubLatestCommit": "4016d1227e7c5990634806b38c36e2bafc186ebe", + "githubForks": 16, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ab41b8a1-2d67-4398-a30d-300b300499bc_puppeteerbrowserautomation.json b/server/src/data/split/ab41b8a1-2d67-4398-a30d-300b300499bc_puppeteerbrowserautomation.json index 6726dbc..2a3ebd0 100644 --- a/server/src/data/split/ab41b8a1-2d67-4398-a30d-300b300499bc_puppeteerbrowserautomation.json +++ b/server/src/data/split/ab41b8a1-2d67-4398-a30d-300b300499bc_puppeteerbrowserautomation.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2024-12-21T02:27:56Z", "hubId": "ab41b8a1-2d67-4398-a30d-300b300499bc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7ba9a7031859a0bd1b4f931b92349a269ec22be6", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ab46b331-424a-4eef-a603-945e187f7500_git.json b/server/src/data/split/ab46b331-424a-4eef-a603-945e187f7500_git.json index ef427af..2f54e48 100644 --- a/server/src/data/split/ab46b331-424a-4eef-a603-945e187f7500_git.json +++ b/server/src/data/split/ab46b331-424a-4eef-a603-945e187f7500_git.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 49, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-02T17:19:14Z", "hubId": "ab46b331-424a-4eef-a603-945e187f7500", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "61b12707deabd0c00efefc167cb4e134a9bd9bab", + "githubForks": 10, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ab4c4b39-f3ee-4faa-b801-c41f8aae505f_contentfulmcp.json b/server/src/data/split/ab4c4b39-f3ee-4faa-b801-c41f8aae505f_contentfulmcp.json index 4269571..5289635 100644 --- a/server/src/data/split/ab4c4b39-f3ee-4faa-b801-c41f8aae505f_contentfulmcp.json +++ b/server/src/data/split/ab4c4b39-f3ee-4faa-b801-c41f8aae505f_contentfulmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-29T19:27:31Z", "hubId": "ab4c4b39-f3ee-4faa-b801-c41f8aae505f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "ivo-toby", + "githubLatestCommit": "bd49946a97e75a1739b904d20a3afc86a5b95276", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ab7c3dab-25fd-4308-9267-adb57d62b167_asana.json b/server/src/data/split/ab7c3dab-25fd-4308-9267-adb57d62b167_asana.json index 128e0e3..fa48153 100644 --- a/server/src/data/split/ab7c3dab-25fd-4308-9267-adb57d62b167_asana.json +++ b/server/src/data/split/ab7c3dab-25fd-4308-9267-adb57d62b167_asana.json @@ -19,9 +19,12 @@ "githubStars": 3, "downloadCount": 150, "createdAt": "2025-02-18T23:04:35.990279Z", - "updatedAt": "2025-02-18T23:04:35.990279Z", + "updatedAt": "2025-02-19T05:05:38Z", "hubId": "ab7c3dab-25fd-4308-9267-adb57d62b167", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "afe3311d53dbf06cc9b0af5062e1958b48fd8ade", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ab82975d-fbf7-4bb5-b5af-86242b1ab632_emojikeyviasupabase.json b/server/src/data/split/ab82975d-fbf7-4bb5-b5af-86242b1ab632_emojikeyviasupabase.json index 020fcbe..679f16b 100644 --- a/server/src/data/split/ab82975d-fbf7-4bb5-b5af-86242b1ab632_emojikeyviasupabase.json +++ b/server/src/data/split/ab82975d-fbf7-4bb5-b5af-86242b1ab632_emojikeyviasupabase.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-10T10:01:50Z", "hubId": "ab82975d-fbf7-4bb5-b5af-86242b1ab632", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5d134ffd4225a7c8b673db9f21b413252b5b96a3", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/abd32fcf-e377-4f8b-bf5f-f9736baa2348_handwritingocr.json b/server/src/data/split/abd32fcf-e377-4f8b-bf5f-f9736baa2348_handwritingocr.json index 3ee9bf4..e318179 100644 --- a/server/src/data/split/abd32fcf-e377-4f8b-bf5f-f9736baa2348_handwritingocr.json +++ b/server/src/data/split/abd32fcf-e377-4f8b-bf5f-f9736baa2348_handwritingocr.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-09T23:33:58Z", "hubId": "abd32fcf-e377-4f8b-bf5f-f9736baa2348", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1b81cd90103265eac82d4a441fe669e6c7ccf03a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ac165de0-d6d8-47f1-9ccd-f44501646090_placidimagegenerator.json b/server/src/data/split/ac165de0-d6d8-47f1-9ccd-f44501646090_placidimagegenerator.json index 0c187b5..4c7fe05 100644 --- a/server/src/data/split/ac165de0-d6d8-47f1-9ccd-f44501646090_placidimagegenerator.json +++ b/server/src/data/split/ac165de0-d6d8-47f1-9ccd-f44501646090_placidimagegenerator.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-28T23:13:51Z", "hubId": "ac165de0-d6d8-47f1-9ccd-f44501646090", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f2e3e091e701098c07d9425cca56f7c2abd901b5", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ac6105bb-383b-40c5-aa30-64e581c80cd3_etherscantools.json b/server/src/data/split/ac6105bb-383b-40c5-aa30-64e581c80cd3_etherscantools.json index 541343b..6417647 100644 --- a/server/src/data/split/ac6105bb-383b-40c5-aa30-64e581c80cd3_etherscantools.json +++ b/server/src/data/split/ac6105bb-383b-40c5-aa30-64e581c80cd3_etherscantools.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2024-12-31T17:32:56Z", "hubId": "ac6105bb-383b-40c5-aa30-64e581c80cd3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "73578d9274f93ecf714f70b73c7c9d58a6453491", + "githubForks": 11, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ac67f77d-91b1-4084-90f8-e45be0a2eafe_adfin.json b/server/src/data/split/ac67f77d-91b1-4084-90f8-e45be0a2eafe_adfin.json index c6fb618..9886bf4 100644 --- a/server/src/data/split/ac67f77d-91b1-4084-90f8-e45be0a2eafe_adfin.json +++ b/server/src/data/split/ac67f77d-91b1-4084-90f8-e45be0a2eafe_adfin.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-20T14:09:40Z", "hubId": "ac67f77d-91b1-4084-90f8-e45be0a2eafe", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "Adfin-Engineering", + "githubLatestCommit": "514608efcf57c680a26ce31d6280f982aec83a77", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/ac8974f5-a4f9-4067-be5f-7506d2d867f0_googletasks.json b/server/src/data/split/ac8974f5-a4f9-4067-be5f-7506d2d867f0_googletasks.json index f050ff5..910b046 100644 --- a/server/src/data/split/ac8974f5-a4f9-4067-be5f-7506d2d867f0_googletasks.json +++ b/server/src/data/split/ac8974f5-a4f9-4067-be5f-7506d2d867f0_googletasks.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-01T19:28:20Z", "hubId": "ac8974f5-a4f9-4067-be5f-7506d2d867f0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8a22239bc515f95692a381ef442515b9703c1cf5", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/ac8c725c-106e-4b45-bff3-f959590adcd6_wechatsummarizer.json b/server/src/data/split/ac8c725c-106e-4b45-bff3-f959590adcd6_wechatsummarizer.json index 5df081e..dc4e59b 100644 --- a/server/src/data/split/ac8c725c-106e-4b45-bff3-f959590adcd6_wechatsummarizer.json +++ b/server/src/data/split/ac8c725c-106e-4b45-bff3-f959590adcd6_wechatsummarizer.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 937, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2024-12-04T02:58:15Z", "hubId": "ac8c725c-106e-4b45-bff3-f959590adcd6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5bf9298aa095da8b4af277137f48cc468f736797", + "githubForks": 89 } \ No newline at end of file diff --git a/server/src/data/split/ad33f0c0-4c96-4e44-a344-8bcd5430d687_linear.json b/server/src/data/split/ad33f0c0-4c96-4e44-a344-8bcd5430d687_linear.json index 782fc1a..33ce96e 100644 --- a/server/src/data/split/ad33f0c0-4c96-4e44-a344-8bcd5430d687_linear.json +++ b/server/src/data/split/ad33f0c0-4c96-4e44-a344-8bcd5430d687_linear.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 30, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-14T21:08:52Z", "hubId": "ad33f0c0-4c96-4e44-a344-8bcd5430d687", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9a06ce3c1ae2faddf38311d648442602022e740a", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ad5fc347-d2d8-4543-81d8-771cd332bc41_appwrite.json b/server/src/data/split/ad5fc347-d2d8-4543-81d8-771cd332bc41_appwrite.json index bf5779c..1a67a79 100644 --- a/server/src/data/split/ad5fc347-d2d8-4543-81d8-771cd332bc41_appwrite.json +++ b/server/src/data/split/ad5fc347-d2d8-4543-81d8-771cd332bc41_appwrite.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-25T16:58:12Z", "hubId": "ad5fc347-d2d8-4543-81d8-771cd332bc41", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bf855658382c3608fac0df2f58e68b3009065519", + "githubForks": 11, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ad8b498a-ce23-4ee9-a4a4-788653a39976_terminal.json b/server/src/data/split/ad8b498a-ce23-4ee9-a4a4-788653a39976_terminal.json index d3cbe79..0b24c93 100644 --- a/server/src/data/split/ad8b498a-ce23-4ee9-a4a4-788653a39976_terminal.json +++ b/server/src/data/split/ad8b498a-ce23-4ee9-a4a4-788653a39976_terminal.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-15T22:00:15Z", "hubId": "ad8b498a-ce23-4ee9-a4a4-788653a39976", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f4483618a91a8ee646dd5d5663f026ba8d26d7c9", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ad9e853b-1c5c-43fd-9d0d-1baa7c1da552_springapplicationadvisor.json b/server/src/data/split/ad9e853b-1c5c-43fd-9d0d-1baa7c1da552_springapplicationadvisor.json index 6657138..ad64658 100644 --- a/server/src/data/split/ad9e853b-1c5c-43fd-9d0d-1baa7c1da552_springapplicationadvisor.json +++ b/server/src/data/split/ad9e853b-1c5c-43fd-9d0d-1baa7c1da552_springapplicationadvisor.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-12T14:02:57Z", "hubId": "ad9e853b-1c5c-43fd-9d0d-1baa7c1da552", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "931672ad8cfdf609e3c5484d5b3df66c787415fb", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/adc61dbf-48ec-40f7-9afc-17c095138591_imagegenerationreplicate.json b/server/src/data/split/adc61dbf-48ec-40f7-9afc-17c095138591_imagegenerationreplicate.json index 311faff..6249a21 100644 --- a/server/src/data/split/adc61dbf-48ec-40f7-9afc-17c095138591_imagegenerationreplicate.json +++ b/server/src/data/split/adc61dbf-48ec-40f7-9afc-17c095138591_imagegenerationreplicate.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-08T16:08:48Z", "hubId": "adc61dbf-48ec-40f7-9afc-17c095138591", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bd58f120b3455143f6b8f10836d3dc18509ac96a", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ae0a2351-f5d4-4b98-a7c8-333dd42cc102_nexusdataprocessor.json b/server/src/data/split/ae0a2351-f5d4-4b98-a7c8-333dd42cc102_nexusdataprocessor.json index d876f11..1c2d1a3 100644 --- a/server/src/data/split/ae0a2351-f5d4-4b98-a7c8-333dd42cc102_nexusdataprocessor.json +++ b/server/src/data/split/ae0a2351-f5d4-4b98-a7c8-333dd42cc102_nexusdataprocessor.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-25T02:55:53Z", "hubId": "ae0a2351-f5d4-4b98-a7c8-333dd42cc102", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "13c1d43dbd55c9b051c33c0abf02fe636d6cdce0", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ae9a6e43-aa37-43ba-8c29-9b2b84e43010_logseq.json b/server/src/data/split/ae9a6e43-aa37-43ba-8c29-9b2b84e43010_logseq.json index 79155b8..01b1a7e 100644 --- a/server/src/data/split/ae9a6e43-aa37-43ba-8c29-9b2b84e43010_logseq.json +++ b/server/src/data/split/ae9a6e43-aa37-43ba-8c29-9b2b84e43010_logseq.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-20T12:14:08Z", "hubId": "ae9a6e43-aa37-43ba-8c29-9b2b84e43010", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "46a7a20485e853eee5e0c09827ea4e09a5447f83", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/aeb410c1-f7a6-4e14-85eb-b236a7dd6a76_koboldai.json b/server/src/data/split/aeb410c1-f7a6-4e14-85eb-b236a7dd6a76_koboldai.json index a482c50..58efa6a 100644 --- a/server/src/data/split/aeb410c1-f7a6-4e14-85eb-b236a7dd6a76_koboldai.json +++ b/server/src/data/split/aeb410c1-f7a6-4e14-85eb-b236a7dd6a76_koboldai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-01-26T00:04:08Z", "hubId": "aeb410c1-f7a6-4e14-85eb-b236a7dd6a76", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3892ddf3118aa064ca59841a62315119142fe95b", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af126906-188e-4e82-ac2b-2b3071809408_huggingfacespacesconnector.json b/server/src/data/split/af126906-188e-4e82-ac2b-2b3071809408_huggingfacespacesconnector.json index ae94037..3874e2b 100644 --- a/server/src/data/split/af126906-188e-4e82-ac2b-2b3071809408_huggingfacespacesconnector.json +++ b/server/src/data/split/af126906-188e-4e82-ac2b-2b3071809408_huggingfacespacesconnector.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 239, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-24T11:34:42Z", "hubId": "af126906-188e-4e82-ac2b-2b3071809408", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f8cb08106f1c70c3dfaf6a11f8a76049c3a4196f", + "githubForks": 36, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af18006c-fd29-4a3b-ac62-ff7ff475ef95_sqlite.json b/server/src/data/split/af18006c-fd29-4a3b-ac62-ff7ff475ef95_sqlite.json index 1e35053..639eb17 100644 --- a/server/src/data/split/af18006c-fd29-4a3b-ac62-ff7ff475ef95_sqlite.json +++ b/server/src/data/split/af18006c-fd29-4a3b-ac62-ff7ff475ef95_sqlite.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 31, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-05T11:00:15Z", "hubId": "af18006c-fd29-4a3b-ac62-ff7ff475ef95", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c9dc4419a2c5a46690a4bf108484677afca38c7e", + "githubForks": 11, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af18b584-7347-47f4-b29e-4db88d5a9b27_vegalitedatavisualization.json b/server/src/data/split/af18b584-7347-47f4-b29e-4db88d5a9b27_vegalitedatavisualization.json index 7f4f4ca..2ff2ed2 100644 --- a/server/src/data/split/af18b584-7347-47f4-b29e-4db88d5a9b27_vegalitedatavisualization.json +++ b/server/src/data/split/af18b584-7347-47f4-b29e-4db88d5a9b27_vegalitedatavisualization.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 55, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-04-27T18:02:33Z", "hubId": "af18b584-7347-47f4-b29e-4db88d5a9b27", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0fa8413b6fdc6bdccdc7798e4c53a2dcc5e970f7", + "githubForks": 15 } \ No newline at end of file diff --git a/server/src/data/split/af195330-fd01-4441-a013-4a2517dbbe93_vercelai.json b/server/src/data/split/af195330-fd01-4441-a013-4a2517dbbe93_vercelai.json index 1737e6b..da7fb95 100644 --- a/server/src/data/split/af195330-fd01-4441-a013-4a2517dbbe93_vercelai.json +++ b/server/src/data/split/af195330-fd01-4441-a013-4a2517dbbe93_vercelai.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2024-12-06T18:36:45Z", "hubId": "af195330-fd01-4441-a013-4a2517dbbe93", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d0821118133c9599f91695f8dd5df4c8ccab8551", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/af1a77d5-7654-4b01-81b8-65a8c9c06886_bitrise.json b/server/src/data/split/af1a77d5-7654-4b01-81b8-65a8c9c06886_bitrise.json index 27eec4f..2bcff40 100644 --- a/server/src/data/split/af1a77d5-7654-4b01-81b8-65a8c9c06886_bitrise.json +++ b/server/src/data/split/af1a77d5-7654-4b01-81b8-65a8c9c06886_bitrise.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 21, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-16T13:29:17Z", "hubId": "af1a77d5-7654-4b01-81b8-65a8c9c06886", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "bitrise-io", + "githubLatestCommit": "d576c9694828f38910e38b0d8e0cea14977140ae", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af1d0781-4137-4bc3-ab1b-b9198d14f620_computeruseremotemacosuse.json b/server/src/data/split/af1d0781-4137-4bc3-ab1b-b9198d14f620_computeruseremotemacosuse.json index 5e7f9b9..ecd2d05 100644 --- a/server/src/data/split/af1d0781-4137-4bc3-ab1b-b9198d14f620_computeruseremotemacosuse.json +++ b/server/src/data/split/af1d0781-4137-4bc3-ab1b-b9198d14f620_computeruseremotemacosuse.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 66, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-16T09:27:26Z", "hubId": "af1d0781-4137-4bc3-ab1b-b9198d14f620", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "baryhuang", + "githubLatestCommit": "bd05d18686ada201dc9266d17df1a251df9d6a47", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af31937a-4310-49bd-ac0e-eee894b566da_dingtalkv2.json b/server/src/data/split/af31937a-4310-49bd-ac0e-eee894b566da_dingtalkv2.json index fc407e1..e3bf6ac 100644 --- a/server/src/data/split/af31937a-4310-49bd-ac0e-eee894b566da_dingtalkv2.json +++ b/server/src/data/split/af31937a-4310-49bd-ac0e-eee894b566da_dingtalkv2.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-06T01:45:11Z", "hubId": "af31937a-4310-49bd-ac0e-eee894b566da", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6808a2653962f6648980ea1543e605b51e1b72b5", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af783d87-e188-47e0-beef-37722e17e94c_sqlitenodejs.json b/server/src/data/split/af783d87-e188-47e0-beef-37722e17e94c_sqlitenodejs.json index 1d8b66d..d89a762 100644 --- a/server/src/data/split/af783d87-e188-47e0-beef-37722e17e94c_sqlitenodejs.json +++ b/server/src/data/split/af783d87-e188-47e0-beef-37722e17e94c_sqlitenodejs.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-16T01:03:33Z", "hubId": "af783d87-e188-47e0-beef-37722e17e94c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "19267d777bf969109e500fb085c1950b466a5ebe", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/af88f92d-55dd-455e-b1f0-9460465017ab_workos.json b/server/src/data/split/af88f92d-55dd-455e-b1f0-9460465017ab_workos.json index 821da2e..98e6b52 100644 --- a/server/src/data/split/af88f92d-55dd-455e-b1f0-9460465017ab_workos.json +++ b/server/src/data/split/af88f92d-55dd-455e-b1f0-9460465017ab_workos.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-02-26T00:38:52Z", "hubId": "af88f92d-55dd-455e-b1f0-9460465017ab", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3a508998ec512dfdeea333e535f99b3fe9e1d3a4", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/af9fa54b-56c9-4323-b660-04f587786eaa_blogpublisher.json b/server/src/data/split/af9fa54b-56c9-4323-b660-04f587786eaa_blogpublisher.json index e82fafa..0e44486 100644 --- a/server/src/data/split/af9fa54b-56c9-4323-b660-04f587786eaa_blogpublisher.json +++ b/server/src/data/split/af9fa54b-56c9-4323-b660-04f587786eaa_blogpublisher.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-10T12:21:21Z", "hubId": "af9fa54b-56c9-4323-b660-04f587786eaa", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "49c0cafe2977ea2889041a3b23395caa92b4e0b1", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/afd10f01-b699-4683-aee0-0e11ee7e97fc_trino.json b/server/src/data/split/afd10f01-b699-4683-aee0-0e11ee7e97fc_trino.json index c547a24..f3056d6 100644 --- a/server/src/data/split/afd10f01-b699-4683-aee0-0e11ee7e97fc_trino.json +++ b/server/src/data/split/afd10f01-b699-4683-aee0-0e11ee7e97fc_trino.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-02T05:19:22Z", "hubId": "afd10f01-b699-4683-aee0-0e11ee7e97fc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fb6777f1874cba6782142d841b4b735dfbb3d719", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/afe71691-8b26-4723-8993-bb78207113b1_tmux.json b/server/src/data/split/afe71691-8b26-4723-8993-bb78207113b1_tmux.json index d38462f..3ca7e17 100644 --- a/server/src/data/split/afe71691-8b26-4723-8993-bb78207113b1_tmux.json +++ b/server/src/data/split/afe71691-8b26-4723-8993-bb78207113b1_tmux.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-21T21:59:28Z", "hubId": "afe71691-8b26-4723-8993-bb78207113b1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8b0c69b4b827f7838b097cd57dd5a326641e9b8b", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b00a63dd-ce5d-4040-9e0e-8c100618faf6_ubereats.json b/server/src/data/split/b00a63dd-ce5d-4040-9e0e-8c100618faf6_ubereats.json index e83579b..af7d2a4 100644 --- a/server/src/data/split/b00a63dd-ce5d-4040-9e0e-8c100618faf6_ubereats.json +++ b/server/src/data/split/b00a63dd-ce5d-4040-9e0e-8c100618faf6_ubereats.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 161, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-02T16:28:46Z", "hubId": "b00a63dd-ce5d-4040-9e0e-8c100618faf6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ba475ebd9343dc771addd22ecbd19420a8d7534b", + "githubForks": 25 } \ No newline at end of file diff --git a/server/src/data/split/b00f2a71-4444-4e67-83bc-4b0b141a7870_exasearch.json b/server/src/data/split/b00f2a71-4444-4e67-83bc-4b0b141a7870_exasearch.json index 5db7707..db526da 100644 --- a/server/src/data/split/b00f2a71-4444-4e67-83bc-4b0b141a7870_exasearch.json +++ b/server/src/data/split/b00f2a71-4444-4e67-83bc-4b0b141a7870_exasearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 427, + "githubStars": 1409, "downloadCount": 476, "createdAt": "2025-02-17T22:46:53.872366Z", - "updatedAt": "2025-02-17T22:46:53.872366Z", + "updatedAt": "2025-04-28T23:13:35Z", "hubId": "b00f2a71-4444-4e67-83bc-4b0b141a7870", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "e444f3bcfe9bf3f84e775c1232ee0f071778f9e3", + "githubForks": 113, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b02e5cce-72a9-43c4-a804-bc5cd3d23697_functionhub.json b/server/src/data/split/b02e5cce-72a9-43c4-a804-bc5cd3d23697_functionhub.json index ba003e6..fa65c6a 100644 --- a/server/src/data/split/b02e5cce-72a9-43c4-a804-bc5cd3d23697_functionhub.json +++ b/server/src/data/split/b02e5cce-72a9-43c4-a804-bc5cd3d23697_functionhub.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-12T18:53:45Z", "hubId": "b02e5cce-72a9-43c4-a804-bc5cd3d23697", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bd0a8c4e50a499b6bc6b91d667f2fac49452d15a", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b04bf6e6-1de2-44eb-a118-d7b403d2f980_apachedoris.json b/server/src/data/split/b04bf6e6-1de2-44eb-a118-d7b403d2f980_apachedoris.json index c36f75f..bdbee46 100644 --- a/server/src/data/split/b04bf6e6-1de2-44eb-a118-d7b403d2f980_apachedoris.json +++ b/server/src/data/split/b04bf6e6-1de2-44eb-a118-d7b403d2f980_apachedoris.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-07T14:22:17Z", "hubId": "b04bf6e6-1de2-44eb-a118-d7b403d2f980", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2b716fdc0db98678bb7e56ff9e7a86c9c0c6e24b", + "githubForks": 3, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b0962d5d-7c18-4b12-9680-2082740c611c_codeinterpreter.json b/server/src/data/split/b0962d5d-7c18-4b12-9680-2082740c611c_codeinterpreter.json index 4fd1ed8..8f3cf9d 100644 --- a/server/src/data/split/b0962d5d-7c18-4b12-9680-2082740c611c_codeinterpreter.json +++ b/server/src/data/split/b0962d5d-7c18-4b12-9680-2082740c611c_codeinterpreter.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 153, + "githubStars": 235, "downloadCount": 550, "createdAt": "2025-02-18T05:45:58.533295Z", - "updatedAt": "2025-02-18T05:45:58.533295Z", + "updatedAt": "2025-03-28T10:26:03Z", "hubId": "b0962d5d-7c18-4b12-9680-2082740c611c", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "588e509c51c8ec77c77d404f58684e5734d934f6", + "githubForks": 32, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b0ae689e-c1c0-447a-b36f-cf130a8af5a5_gemini.json b/server/src/data/split/b0ae689e-c1c0-447a-b36f-cf130a8af5a5_gemini.json index b8fb388..5504a2a 100644 --- a/server/src/data/split/b0ae689e-c1c0-447a-b36f-cf130a8af5a5_gemini.json +++ b/server/src/data/split/b0ae689e-c1c0-447a-b36f-cf130a8af5a5_gemini.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 117, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2024-12-16T06:51:12Z", "hubId": "b0ae689e-c1c0-447a-b36f-cf130a8af5a5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3009a3e7bc87bc21423dfbf8abf3bc3cd05eb352", + "githubForks": 25, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b0b50f3d-f5e7-460f-99a4-934660dcaa08_applescript.json b/server/src/data/split/b0b50f3d-f5e7-460f-99a4-934660dcaa08_applescript.json index 931b815..577b136 100644 --- a/server/src/data/split/b0b50f3d-f5e7-460f-99a4-934660dcaa08_applescript.json +++ b/server/src/data/split/b0b50f3d-f5e7-460f-99a4-934660dcaa08_applescript.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 65, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-22T09:11:01Z", "hubId": "b0b50f3d-f5e7-460f-99a4-934660dcaa08", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "peakmojo", + "githubLatestCommit": "402ebc226c5765a8ffff3286231b0ea5807ef32c", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b0c4aac3-3df1-4eaa-878a-2b3c4d716101_gauntletincept.json b/server/src/data/split/b0c4aac3-3df1-4eaa-878a-2b3c4d716101_gauntletincept.json index 0043fb4..4dfe52a 100644 --- a/server/src/data/split/b0c4aac3-3df1-4eaa-878a-2b3c4d716101_gauntletincept.json +++ b/server/src/data/split/b0c4aac3-3df1-4eaa-878a-2b3c4d716101_gauntletincept.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-27T15:25:14Z", "hubId": "b0c4aac3-3df1-4eaa-878a-2b3c4d716101", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fecd38dfde679a467588178b87d6728c62a60952", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b11a34f3-d99a-4b97-9b3e-0af3b70217fa_youtube.json b/server/src/data/split/b11a34f3-d99a-4b97-9b3e-0af3b70217fa_youtube.json index 8c6c3a8..8e8f3b1 100644 --- a/server/src/data/split/b11a34f3-d99a-4b97-9b3e-0af3b70217fa_youtube.json +++ b/server/src/data/split/b11a34f3-d99a-4b97-9b3e-0af3b70217fa_youtube.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 453, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T23:44:58Z", "hubId": "b11a34f3-d99a-4b97-9b3e-0af3b70217fa", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Klavis-AI", + "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", + "githubForks": 82, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b120a7e2-61e8-46e2-8493-2b8f6ef4745f_eaglecool.json b/server/src/data/split/b120a7e2-61e8-46e2-8493-2b8f6ef4745f_eaglecool.json index 1580309..a4c70dc 100644 --- a/server/src/data/split/b120a7e2-61e8-46e2-8493-2b8f6ef4745f_eaglecool.json +++ b/server/src/data/split/b120a7e2-61e8-46e2-8493-2b8f6ef4745f_eaglecool.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2024-12-24T07:32:57Z", "hubId": "b120a7e2-61e8-46e2-8493-2b8f6ef4745f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "195b7c549d742b34e6542665a84b91ab2bfd907a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/b13fee1d-e333-4d5d-87d6-404f1d9985da_etoroportfolio.json b/server/src/data/split/b13fee1d-e333-4d5d-87d6-404f1d9985da_etoroportfolio.json index 3f08f29..8fbc844 100644 --- a/server/src/data/split/b13fee1d-e333-4d5d-87d6-404f1d9985da_etoroportfolio.json +++ b/server/src/data/split/b13fee1d-e333-4d5d-87d6-404f1d9985da_etoroportfolio.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-12T08:32:04Z", "hubId": "b13fee1d-e333-4d5d-87d6-404f1d9985da", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c3b98c40fa3cec5c6d8b1d02c941b07a3efe277a", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b14798ba-cb0a-43de-8fc7-06339cb20812_neon.json b/server/src/data/split/b14798ba-cb0a-43de-8fc7-06339cb20812_neon.json index a595e14..839b41a 100644 --- a/server/src/data/split/b14798ba-cb0a-43de-8fc7-06339cb20812_neon.json +++ b/server/src/data/split/b14798ba-cb0a-43de-8fc7-06339cb20812_neon.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-24T18:54:55Z", "hubId": "b14798ba-cb0a-43de-8fc7-06339cb20812", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1ae8b018f782f48e29f4ad9e77e5f7eed1e99574", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b164fff6-fe3d-45ae-a97b-fd64ac801bdc_attestablemcp.json b/server/src/data/split/b164fff6-fe3d-45ae-a97b-fd64ac801bdc_attestablemcp.json index f852d9d..927c2a7 100644 --- a/server/src/data/split/b164fff6-fe3d-45ae-a97b-fd64ac801bdc_attestablemcp.json +++ b/server/src/data/split/b164fff6-fe3d-45ae-a97b-fd64ac801bdc_attestablemcp.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-28T20:55:35Z", "hubId": "b164fff6-fe3d-45ae-a97b-fd64ac801bdc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "co-browser", + "githubLatestCommit": "aec3ef1c734f5cb43c41ee23c0db914c7153955e", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b1678c50-4539-4733-9648-e38e93ddb832_flutter.json b/server/src/data/split/b1678c50-4539-4733-9648-e38e93ddb832_flutter.json index f85ba48..24b6d30 100644 --- a/server/src/data/split/b1678c50-4539-4733-9648-e38e93ddb832_flutter.json +++ b/server/src/data/split/b1678c50-4539-4733-9648-e38e93ddb832_flutter.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-20T02:10:07Z", "hubId": "b1678c50-4539-4733-9648-e38e93ddb832", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0c8e5968cc1f9c8fde7d0fe9609eac6e98a931e5", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b16b638b-6977-44a0-94e2-c7c44b80e544_fastapitomcpautogenerator.json b/server/src/data/split/b16b638b-6977-44a0-94e2-c7c44b80e544_fastapitomcpautogenerator.json index 490acb7..8c6d710 100644 --- a/server/src/data/split/b16b638b-6977-44a0-94e2-c7c44b80e544_fastapitomcpautogenerator.json +++ b/server/src/data/split/b16b638b-6977-44a0-94e2-c7c44b80e544_fastapitomcpautogenerator.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4080, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-23T18:03:23Z", "hubId": "b16b638b-6977-44a0-94e2-c7c44b80e544", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "tadata-org", + "githubLatestCommit": "f180bda8e66c7e8d3a767efb1aad6f21f26ab9c0", + "githubForks": 330, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b1922b96-ad36-49a0-8806-4e485ade3c72_ledgercli.json b/server/src/data/split/b1922b96-ad36-49a0-8806-4e485ade3c72_ledgercli.json index 215349d..55f9d95 100644 --- a/server/src/data/split/b1922b96-ad36-49a0-8806-4e485ade3c72_ledgercli.json +++ b/server/src/data/split/b1922b96-ad36-49a0-8806-4e485ade3c72_ledgercli.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-22T07:27:24Z", "hubId": "b1922b96-ad36-49a0-8806-4e485ade3c72", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "576c9c41bb69f7ad8d08d3acf5969261179842b1", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/b19a0336-31fc-4579-b71a-e4659732ec7a_postgresqlmultischema.json b/server/src/data/split/b19a0336-31fc-4579-b71a-e4659732ec7a_postgresqlmultischema.json index 621e4b7..245e79b 100644 --- a/server/src/data/split/b19a0336-31fc-4579-b71a-e4659732ec7a_postgresqlmultischema.json +++ b/server/src/data/split/b19a0336-31fc-4579-b71a-e4659732ec7a_postgresqlmultischema.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-02-25T00:45:53Z", "hubId": "b19a0336-31fc-4579-b71a-e4659732ec7a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c0f701566e40026b5cea97ca3ba108021cb57198", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b19b5335-c869-4902-9964-9cd6f2f89f5c_meilisearch.json b/server/src/data/split/b19b5335-c869-4902-9964-9cd6f2f89f5c_meilisearch.json index 7c9de59..64a2aea 100644 --- a/server/src/data/split/b19b5335-c869-4902-9964-9cd6f2f89f5c_meilisearch.json +++ b/server/src/data/split/b19b5335-c869-4902-9964-9cd6f2f89f5c_meilisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-02-26T01:39:56Z", "hubId": "b19b5335-c869-4902-9964-9cd6f2f89f5c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d520f4cc757171fd27c7bd7d6528b6be1dafc22d", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b1aae4ff-3848-46b1-9d19-05766520a9c3_solana.json b/server/src/data/split/b1aae4ff-3848-46b1-9d19-05766520a9c3_solana.json index 21dcd41..e01d063 100644 --- a/server/src/data/split/b1aae4ff-3848-46b1-9d19-05766520a9c3_solana.json +++ b/server/src/data/split/b1aae4ff-3848-46b1-9d19-05766520a9c3_solana.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 22, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-24T21:49:00Z", "hubId": "b1aae4ff-3848-46b1-9d19-05766520a9c3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0f29c301c1b8a3682a4fe283215ed47604653cac", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b1ab9125-d119-4328-a39d-d05cde3d8543_deepwebresearch.json b/server/src/data/split/b1ab9125-d119-4328-a39d-d05cde3d8543_deepwebresearch.json index f675bc1..b98f608 100644 --- a/server/src/data/split/b1ab9125-d119-4328-a39d-d05cde3d8543_deepwebresearch.json +++ b/server/src/data/split/b1ab9125-d119-4328-a39d-d05cde3d8543_deepwebresearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 58, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-05T22:02:15Z", "hubId": "b1ab9125-d119-4328-a39d-d05cde3d8543", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bdbbec656c0c2ad2a4d580c71ba804b367924fd7", + "githubForks": 15, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b1bc59fb-f2e0-4a1c-852b-47fe3d2f8489_scast.json b/server/src/data/split/b1bc59fb-f2e0-4a1c-852b-47fe3d2f8489_scast.json index 452d4d5..cd8bbef 100644 --- a/server/src/data/split/b1bc59fb-f2e0-4a1c-852b-47fe3d2f8489_scast.json +++ b/server/src/data/split/b1bc59fb-f2e0-4a1c-852b-47fe3d2f8489_scast.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 18, "downloadCount": 0, "createdAt": "2025-03-22T11:35:24.448304+00:00", - "updatedAt": "2025-03-22T11:35:24.448304+00:00", + "updatedAt": "2025-04-22T07:12:55Z", "hubId": "b1bc59fb-f2e0-4a1c-852b-47fe3d2f8489", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "afd0c8eed5d847999d0e9e0ecb29e4d05d38bdb8", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b21aff6f-6de3-4e8f-a58c-22d850756448_resend.json b/server/src/data/split/b21aff6f-6de3-4e8f-a58c-22d850756448_resend.json index 69c9f16..285588f 100644 --- a/server/src/data/split/b21aff6f-6de3-4e8f-a58c-22d850756448_resend.json +++ b/server/src/data/split/b21aff6f-6de3-4e8f-a58c-22d850756448_resend.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 325, "downloadCount": 0, "createdAt": "2025-03-13T17:34:19.806589+00:00", - "updatedAt": "2025-03-13T17:34:19.806589+00:00", + "updatedAt": "2025-04-25T11:43:29Z", "hubId": "b21aff6f-6de3-4e8f-a58c-22d850756448", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1e1e23589c8a3210ad77d74ba99fe584ba1c5e3a", + "githubForks": 38 } \ No newline at end of file diff --git a/server/src/data/split/b233450f-b544-4f32-a64e-33be66318b4c_mattermost.json b/server/src/data/split/b233450f-b544-4f32-a64e-33be66318b4c_mattermost.json index 50a0b89..499fc62 100644 --- a/server/src/data/split/b233450f-b544-4f32-a64e-33be66318b4c_mattermost.json +++ b/server/src/data/split/b233450f-b544-4f32-a64e-33be66318b4c_mattermost.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-10T11:25:17Z", "hubId": "b233450f-b544-4f32-a64e-33be66318b4c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fd64488da729da41e21f6f0e93c6e9b6559b4fae", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/b25a5190-8e64-4508-a8b3-209059f27b59_strava.json b/server/src/data/split/b25a5190-8e64-4508-a8b3-209059f27b59_strava.json index 5e3d8b4..533cc97 100644 --- a/server/src/data/split/b25a5190-8e64-4508-a8b3-209059f27b59_strava.json +++ b/server/src/data/split/b25a5190-8e64-4508-a8b3-209059f27b59_strava.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-28T15:49:29Z", "hubId": "b25a5190-8e64-4508-a8b3-209059f27b59", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e586b213367d89f0cc99869da7d8f7387b9e157e", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b25cfc2b-f7b4-4660-8cb4-4dcd2b921828_duneanalytics.json b/server/src/data/split/b25cfc2b-f7b4-4660-8cb4-4dcd2b921828_duneanalytics.json index 04dc0f1..1357d14 100644 --- a/server/src/data/split/b25cfc2b-f7b4-4660-8cb4-4dcd2b921828_duneanalytics.json +++ b/server/src/data/split/b25cfc2b-f7b4-4660-8cb4-4dcd2b921828_duneanalytics.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-27T23:20:14Z", "hubId": "b25cfc2b-f7b4-4660-8cb4-4dcd2b921828", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1e4eba6d397bf198998ad565cf08a7b5ace29ad7", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b29817c2-4979-4d4b-b309-4b837e9eefdd_resend.json b/server/src/data/split/b29817c2-4979-4d4b-b309-4b837e9eefdd_resend.json index c9cfc25..6508126 100644 --- a/server/src/data/split/b29817c2-4979-4d4b-b309-4b837e9eefdd_resend.json +++ b/server/src/data/split/b29817c2-4979-4d4b-b309-4b837e9eefdd_resend.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 453, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T23:44:58Z", "hubId": "b29817c2-4979-4d4b-b309-4b837e9eefdd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Klavis-AI", + "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", + "githubForks": 82, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b2a6f4f0-2644-47c8-9d77-1f1c058e57f5_starwarsplanetdatacouchbase.json b/server/src/data/split/b2a6f4f0-2644-47c8-9d77-1f1c058e57f5_starwarsplanetdatacouchbase.json index 0026ada..7a9e4d5 100644 --- a/server/src/data/split/b2a6f4f0-2644-47c8-9d77-1f1c058e57f5_starwarsplanetdatacouchbase.json +++ b/server/src/data/split/b2a6f4f0-2644-47c8-9d77-1f1c058e57f5_starwarsplanetdatacouchbase.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-26T02:01:17Z", "hubId": "b2a6f4f0-2644-47c8-9d77-1f1c058e57f5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "837bdbb5d1a7f550f9f5ca4e5f9ef6c8a1d65830", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b2d56d6d-2024-437b-b246-d5f16f482f66_awesomemcpserversbypunkpeye.json b/server/src/data/split/b2d56d6d-2024-437b-b246-d5f16f482f66_awesomemcpserversbypunkpeye.json index 3b22175..dadd1bc 100644 --- a/server/src/data/split/b2d56d6d-2024-437b-b246-d5f16f482f66_awesomemcpserversbypunkpeye.json +++ b/server/src/data/split/b2d56d6d-2024-437b-b246-d5f16f482f66_awesomemcpserversbypunkpeye.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 44546, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T21:25:13Z", "hubId": "b2d56d6d-2024-437b-b246-d5f16f482f66", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "punkpeye", + "githubLatestCommit": "b5e9337c3db4c6856052831b3342d7e8245c7614", + "githubForks": 3238, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b3158e06-42bf-4555-80af-8ebc1c335f03_ortools.json b/server/src/data/split/b3158e06-42bf-4555-80af-8ebc1c335f03_ortools.json index 2226681..2866f8b 100644 --- a/server/src/data/split/b3158e06-42bf-4555-80af-8ebc1c335f03_ortools.json +++ b/server/src/data/split/b3158e06-42bf-4555-80af-8ebc1c335f03_ortools.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2024-12-26T19:26:20Z", "hubId": "b3158e06-42bf-4555-80af-8ebc1c335f03", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ed74c852f7bbdb675ba8c76ca46eec707ce464ee", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b31ad54b-2de1-4765-a5ba-fd1da0472d8e_logicprover9mace4.json b/server/src/data/split/b31ad54b-2de1-4765-a5ba-fd1da0472d8e_logicprover9mace4.json index 1a367d5..c1d3069 100644 --- a/server/src/data/split/b31ad54b-2de1-4765-a5ba-fd1da0472d8e_logicprover9mace4.json +++ b/server/src/data/split/b31ad54b-2de1-4765-a5ba-fd1da0472d8e_logicprover9mace4.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-19T08:18:47Z", "hubId": "b31ad54b-2de1-4765-a5ba-fd1da0472d8e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cd9f07cf9e3b753adf3473c1e5602edfa07575c2", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b33ad00c-12c9-4165-a840-5845572ff911_obsidian.json b/server/src/data/split/b33ad00c-12c9-4165-a840-5845572ff911_obsidian.json index ab7a48a..5ab9d26 100644 --- a/server/src/data/split/b33ad00c-12c9-4165-a840-5845572ff911_obsidian.json +++ b/server/src/data/split/b33ad00c-12c9-4165-a840-5845572ff911_obsidian.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 448, + "githubStars": 768, "downloadCount": 2871, "createdAt": "2025-02-17T22:22:13.239338Z", - "updatedAt": "2025-02-17T22:22:13.239338Z", + "updatedAt": "2025-04-17T23:31:08Z", "hubId": "b33ad00c-12c9-4165-a840-5845572ff911", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9f8261c73af35f2ba37b43bd689f06394a7cd408", + "githubForks": 50, + "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/b348c1a9-edf8-410e-82cc-da5c8f144e9f_togetheraiimagegeneration.json b/server/src/data/split/b348c1a9-edf8-410e-82cc-da5c8f144e9f_togetheraiimagegeneration.json index 8275c97..7fccbc5 100644 --- a/server/src/data/split/b348c1a9-edf8-410e-82cc-da5c8f144e9f_togetheraiimagegeneration.json +++ b/server/src/data/split/b348c1a9-edf8-410e-82cc-da5c8f144e9f_togetheraiimagegeneration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-12T12:07:05Z", "hubId": "b348c1a9-edf8-410e-82cc-da5c8f144e9f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "62f0752b9dd8a6779ec1607d3df299170bd729da", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b35f0eb8-bfa4-45a1-96ac-899185c0d5aa_axiom.json b/server/src/data/split/b35f0eb8-bfa4-45a1-96ac-899185c0d5aa_axiom.json index 67c7804..d5f8758 100644 --- a/server/src/data/split/b35f0eb8-bfa4-45a1-96ac-899185c0d5aa_axiom.json +++ b/server/src/data/split/b35f0eb8-bfa4-45a1-96ac-899185c0d5aa_axiom.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 21, + "githubStars": 38, "downloadCount": 37, "createdAt": "2025-02-18T05:45:45.629989Z", - "updatedAt": "2025-02-18T05:45:45.629989Z", + "updatedAt": "2024-12-06T20:38:23Z", "hubId": "b35f0eb8-bfa4-45a1-96ac-899185c0d5aa", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "80f212819d511bbd170a3cd14e38b196465152ab", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b383a9ba-ab7f-4f37-96bc-ff976b84a3f0_digitalocean.json b/server/src/data/split/b383a9ba-ab7f-4f37-96bc-ff976b84a3f0_digitalocean.json index 320e51b..91a8668 100644 --- a/server/src/data/split/b383a9ba-ab7f-4f37-96bc-ff976b84a3f0_digitalocean.json +++ b/server/src/data/split/b383a9ba-ab7f-4f37-96bc-ff976b84a3f0_digitalocean.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-01-29T12:54:04Z", "hubId": "b383a9ba-ab7f-4f37-96bc-ff976b84a3f0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ab184dbe840cf8a25044f1c138796ac0389321ad", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b3b186f1-74e5-4c5c-abe3-af8f3824fba7_docscraperjinaai.json b/server/src/data/split/b3b186f1-74e5-4c5c-abe3-af8f3824fba7_docscraperjinaai.json index 442f106..3598839 100644 --- a/server/src/data/split/b3b186f1-74e5-4c5c-abe3-af8f3824fba7_docscraperjinaai.json +++ b/server/src/data/split/b3b186f1-74e5-4c5c-abe3-af8f3824fba7_docscraperjinaai.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-12T11:33:59Z", "hubId": "b3b186f1-74e5-4c5c-abe3-af8f3824fba7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "006f0c41b7d8fe4cce98abb06cf00200f45718f0", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b3b62426-3f00-4b90-a020-86af7f8c053d_graphqlexplorer.json b/server/src/data/split/b3b62426-3f00-4b90-a020-86af7f8c053d_graphqlexplorer.json index 54bc46b..8c05cbc 100644 --- a/server/src/data/split/b3b62426-3f00-4b90-a020-86af7f8c053d_graphqlexplorer.json +++ b/server/src/data/split/b3b62426-3f00-4b90-a020-86af7f8c053d_graphqlexplorer.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-24T09:15:12Z", "hubId": "b3b62426-3f00-4b90-a020-86af7f8c053d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "225e946de811ad573f6ffe853a0e27f31038c259", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b3c4cbbb-b1a9-401f-8a2b-65125867f457_iossimulator.json b/server/src/data/split/b3c4cbbb-b1a9-401f-8a2b-65125867f457_iossimulator.json index 3840405..4325636 100644 --- a/server/src/data/split/b3c4cbbb-b1a9-401f-8a2b-65125867f457_iossimulator.json +++ b/server/src/data/split/b3c4cbbb-b1a9-401f-8a2b-65125867f457_iossimulator.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 69, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T08:31:47Z", "hubId": "b3c4cbbb-b1a9-401f-8a2b-65125867f457", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "InditexTech", + "githubLatestCommit": "988116ebe08a8e6d5223d7be6842e97550ead2a3", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b3c551c3-d1aa-4d95-b6c7-2462bbb81483_terminal.json b/server/src/data/split/b3c551c3-d1aa-4d95-b6c7-2462bbb81483_terminal.json index 9683db9..d3ca465 100644 --- a/server/src/data/split/b3c551c3-d1aa-4d95-b6c7-2462bbb81483_terminal.json +++ b/server/src/data/split/b3c551c3-d1aa-4d95-b6c7-2462bbb81483_terminal.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-04-10T08:16:36Z", "hubId": "b3c551c3-d1aa-4d95-b6c7-2462bbb81483", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b688153a8961f745cca0a945a4a4f88db7cbf392", + "githubForks": 4, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/b3d33d28-f658-4dd5-8893-65ab38896a82_txtai.json b/server/src/data/split/b3d33d28-f658-4dd5-8893-65ab38896a82_txtai.json index a98ebfd..0ec2500 100644 --- a/server/src/data/split/b3d33d28-f658-4dd5-8893-65ab38896a82_txtai.json +++ b/server/src/data/split/b3d33d28-f658-4dd5-8893-65ab38896a82_txtai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-22T17:59:25Z", "hubId": "b3d33d28-f658-4dd5-8893-65ab38896a82", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "eaaf647de56d3e333fadfd74d667e4e68f2e540f", + "githubForks": 1, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/b400ccc8-7956-44ae-b3f4-7b9462989941_metabase.json b/server/src/data/split/b400ccc8-7956-44ae-b3f4-7b9462989941_metabase.json index 96f9a28..94ae5a3 100644 --- a/server/src/data/split/b400ccc8-7956-44ae-b3f4-7b9462989941_metabase.json +++ b/server/src/data/split/b400ccc8-7956-44ae-b3f4-7b9462989941_metabase.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 22, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-03-03T10:43:22Z", "hubId": "b400ccc8-7956-44ae-b3f4-7b9462989941", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b7361edc271a768bb8d9c49c3b7683948848242e", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b40280d0-6b2c-4e66-99d4-a3e5f8dbcf6c_confluence.json b/server/src/data/split/b40280d0-6b2c-4e66-99d4-a3e5f8dbcf6c_confluence.json index 837beec..a408a7a 100644 --- a/server/src/data/split/b40280d0-6b2c-4e66-99d4-a3e5f8dbcf6c_confluence.json +++ b/server/src/data/split/b40280d0-6b2c-4e66-99d4-a3e5f8dbcf6c_confluence.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-06T13:30:37Z", "hubId": "b40280d0-6b2c-4e66-99d4-a3e5f8dbcf6c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "002a60874a167c9cfc8045e371c19d545e2981d3", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b43cd994-e6de-4e72-881d-5fa83f2b11cc_mongodbatlas.json b/server/src/data/split/b43cd994-e6de-4e72-881d-5fa83f2b11cc_mongodbatlas.json index a2e4471..2fcb61d 100644 --- a/server/src/data/split/b43cd994-e6de-4e72-881d-5fa83f2b11cc_mongodbatlas.json +++ b/server/src/data/split/b43cd994-e6de-4e72-881d-5fa83f2b11cc_mongodbatlas.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-18T13:45:14Z", "hubId": "b43cd994-e6de-4e72-881d-5fa83f2b11cc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6b541008e4dfdc4ca7b93e42df3f114b185b6f04", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b4ec0159-e0de-40f5-a38d-81137a66112e_xcode.json b/server/src/data/split/b4ec0159-e0de-40f5-a38d-81137a66112e_xcode.json index c840300..76b4c5d 100644 --- a/server/src/data/split/b4ec0159-e0de-40f5-a38d-81137a66112e_xcode.json +++ b/server/src/data/split/b4ec0159-e0de-40f5-a38d-81137a66112e_xcode.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 38, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-06T15:41:18Z", "hubId": "b4ec0159-e0de-40f5-a38d-81137a66112e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "751adea38ae4543748f76ac0715bc63cbcdf6208", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b501ad24-71cb-4813-9c3a-37c8e2fad9c7_ftpservermanager.json b/server/src/data/split/b501ad24-71cb-4813-9c3a-37c8e2fad9c7_ftpservermanager.json index a3a805f..1b47a10 100644 --- a/server/src/data/split/b501ad24-71cb-4813-9c3a-37c8e2fad9c7_ftpservermanager.json +++ b/server/src/data/split/b501ad24-71cb-4813-9c3a-37c8e2fad9c7_ftpservermanager.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-31T07:09:36Z", "hubId": "b501ad24-71cb-4813-9c3a-37c8e2fad9c7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "def8d4b4020ce49c27123c7add5ef012f114c0c3", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b52b8772-582c-4851-ab72-62e909ac2207_salesforce.json b/server/src/data/split/b52b8772-582c-4851-ab72-62e909ac2207_salesforce.json index e40909a..ae76ccc 100644 --- a/server/src/data/split/b52b8772-582c-4851-ab72-62e909ac2207_salesforce.json +++ b/server/src/data/split/b52b8772-582c-4851-ab72-62e909ac2207_salesforce.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-12T06:33:49Z", "hubId": "b52b8772-582c-4851-ab72-62e909ac2207", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e2cccf7c527a31a6bb83ce1ae70405976d852ce6", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b5593508-bab3-46dc-8fc6-8583ff952133_multiservicegateway.json b/server/src/data/split/b5593508-bab3-46dc-8fc6-8583ff952133_multiservicegateway.json index 7290463..76d21bc 100644 --- a/server/src/data/split/b5593508-bab3-46dc-8fc6-8583ff952133_multiservicegateway.json +++ b/server/src/data/split/b5593508-bab3-46dc-8fc6-8583ff952133_multiservicegateway.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-21T16:09:16Z", "hubId": "b5593508-bab3-46dc-8fc6-8583ff952133", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a7936c54dfecdc8513417a8bc977450d6d155242", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b56326ed-2059-4582-8104-a3ba9e05cf69_web3blockchaininterface.json b/server/src/data/split/b56326ed-2059-4582-8104-a3ba9e05cf69_web3blockchaininterface.json index 099c579..e52a534 100644 --- a/server/src/data/split/b56326ed-2059-4582-8104-a3ba9e05cf69_web3blockchaininterface.json +++ b/server/src/data/split/b56326ed-2059-4582-8104-a3ba9e05cf69_web3blockchaininterface.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 72, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-18T18:54:58Z", "hubId": "b56326ed-2059-4582-8104-a3ba9e05cf69", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1b9e5ce23c855503ff2c9f5fc63a737edbd81216", + "githubForks": 19, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b5786f40-7296-418a-ab30-c2f795baf203_awslambda.json b/server/src/data/split/b5786f40-7296-418a-ab30-c2f795baf203_awslambda.json index 8bb2401..b752c52 100644 --- a/server/src/data/split/b5786f40-7296-418a-ab30-c2f795baf203_awslambda.json +++ b/server/src/data/split/b5786f40-7296-418a-ab30-c2f795baf203_awslambda.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 97, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-27T14:51:22Z", "hubId": "b5786f40-7296-418a-ab30-c2f795baf203", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f559302624eb7116eb54d21257c488f45dd87043", + "githubForks": 16, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b58b0df5-bc82-499b-b008-81aaf23dcc33_minimalocalrag.json b/server/src/data/split/b58b0df5-bc82-499b-b008-81aaf23dcc33_minimalocalrag.json index 3975dc7..a8e2196 100644 --- a/server/src/data/split/b58b0df5-bc82-499b-b008-81aaf23dcc33_minimalocalrag.json +++ b/server/src/data/split/b58b0df5-bc82-499b-b008-81aaf23dcc33_minimalocalrag.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 721, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-11T02:45:58Z", "hubId": "b58b0df5-bc82-499b-b008-81aaf23dcc33", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5a11841911c6c262fb2650ef6a0bb2b27ef4a131", + "githubForks": 69, + "licenseType": "MPL-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b592bc53-19a2-49d6-a77e-c187e2647805_zipic.json b/server/src/data/split/b592bc53-19a2-49d6-a77e-c187e2647805_zipic.json index 6b6aa78..15df15d 100644 --- a/server/src/data/split/b592bc53-19a2-49d6-a77e-c187e2647805_zipic.json +++ b/server/src/data/split/b592bc53-19a2-49d6-a77e-c187e2647805_zipic.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-19T12:47:35Z", "hubId": "b592bc53-19a2-49d6-a77e-c187e2647805", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7e324af889f639b2d82c5ab7695b8726396116ce", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b5bc9598-145c-4d22-9710-ba81d3d3b7a1_singaporelta.json b/server/src/data/split/b5bc9598-145c-4d22-9710-ba81d3d3b7a1_singaporelta.json index 59e89a0..5881dba 100644 --- a/server/src/data/split/b5bc9598-145c-4d22-9710-ba81d3d3b7a1_singaporelta.json +++ b/server/src/data/split/b5bc9598-145c-4d22-9710-ba81d3d3b7a1_singaporelta.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-12T17:17:39Z", "hubId": "b5bc9598-145c-4d22-9710-ba81d3d3b7a1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2dbaeab855397b93768106efcb721bf86130853d", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b5edae15-eaa4-4973-a0ae-19ad0cd518c7_gitrepobrowser.json b/server/src/data/split/b5edae15-eaa4-4973-a0ae-19ad0cd518c7_gitrepobrowser.json index 25dda5a..fa0815a 100644 --- a/server/src/data/split/b5edae15-eaa4-4973-a0ae-19ad0cd518c7_gitrepobrowser.json +++ b/server/src/data/split/b5edae15-eaa4-4973-a0ae-19ad0cd518c7_gitrepobrowser.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-18T08:30:45Z", "hubId": "b5edae15-eaa4-4973-a0ae-19ad0cd518c7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "880eb9e9902719970b0bc2e24350f01ceeedbd29", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b5f3a941-ec4b-4c5d-ae22-56dce9a60171_teslafleetapi.json b/server/src/data/split/b5f3a941-ec4b-4c5d-ae22-56dce9a60171_teslafleetapi.json index a991528..9b5d43a 100644 --- a/server/src/data/split/b5f3a941-ec4b-4c5d-ae22-56dce9a60171_teslafleetapi.json +++ b/server/src/data/split/b5f3a941-ec4b-4c5d-ae22-56dce9a60171_teslafleetapi.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-14T18:09:51Z", "hubId": "b5f3a941-ec4b-4c5d-ae22-56dce9a60171", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5179fde30639b7456c5482843fd0a0162b9c2dfa", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b5fde9f8-e172-46ee-b38c-123782f962d1_awsathena.json b/server/src/data/split/b5fde9f8-e172-46ee-b38c-123782f962d1_awsathena.json index 8348ecf..b7109a8 100644 --- a/server/src/data/split/b5fde9f8-e172-46ee-b38c-123782f962d1_awsathena.json +++ b/server/src/data/split/b5fde9f8-e172-46ee-b38c-123782f962d1_awsathena.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-02T09:06:56Z", "hubId": "b5fde9f8-e172-46ee-b38c-123782f962d1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "87b702323e89c927385e45bda0dc1c3b15b33f08", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b6193de6-ef5e-4de9-9d30-d5b386b0674d_notmuchsendmail.json b/server/src/data/split/b6193de6-ef5e-4de9-9d30-d5b386b0674d_notmuchsendmail.json index 93b7681..972d337 100644 --- a/server/src/data/split/b6193de6-ef5e-4de9-9d30-d5b386b0674d_notmuchsendmail.json +++ b/server/src/data/split/b6193de6-ef5e-4de9-9d30-d5b386b0674d_notmuchsendmail.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-09T15:47:16Z", "hubId": "b6193de6-ef5e-4de9-9d30-d5b386b0674d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a7ddca98c6c9e1fddff08e77b4bb7c6575dd338f", + "githubForks": 0, + "licenseType": "MPL-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b635390d-e833-4338-a243-7e2d1e06aaae_airflow.json b/server/src/data/split/b635390d-e833-4338-a243-7e2d1e06aaae_airflow.json index 8330477..e8f5b49 100644 --- a/server/src/data/split/b635390d-e833-4338-a243-7e2d1e06aaae_airflow.json +++ b/server/src/data/split/b635390d-e833-4338-a243-7e2d1e06aaae_airflow.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 31, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-20T13:35:03Z", "hubId": "b635390d-e833-4338-a243-7e2d1e06aaae", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "yangkyeongmo", + "githubLatestCommit": "9e53ae93e676ba087635567ae9434cac92e9469f", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b6362c5e-e03d-40a0-ad99-517e10e9f196_screenpipe.json b/server/src/data/split/b6362c5e-e03d-40a0-ad99-517e10e9f196_screenpipe.json index 8a14fc1..718c9ab 100644 --- a/server/src/data/split/b6362c5e-e03d-40a0-ad99-517e10e9f196_screenpipe.json +++ b/server/src/data/split/b6362c5e-e03d-40a0-ad99-517e10e9f196_screenpipe.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13859, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-16T15:24:22Z", "hubId": "b6362c5e-e03d-40a0-ad99-517e10e9f196", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e7f8388fe17a53b9e07a22f649e34f2b47cfa950", + "githubForks": 999, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b63eb0ac-7d3b-437f-b457-686bd993d0e8_gmailheadless.json b/server/src/data/split/b63eb0ac-7d3b-437f-b457-686bd993d0e8_gmailheadless.json index 5343ffe..92f8507 100644 --- a/server/src/data/split/b63eb0ac-7d3b-437f-b457-686bd993d0e8_gmailheadless.json +++ b/server/src/data/split/b63eb0ac-7d3b-437f-b457-686bd993d0e8_gmailheadless.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-24T04:48:06Z", "hubId": "b63eb0ac-7d3b-437f-b457-686bd993d0e8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "baryhuang", + "githubLatestCommit": "4fd15b3660e071e89d3c7edf3a70aa3eda37d2bf", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b68596c1-5c66-44b7-a624-ebf3765bf25f_rocq.json b/server/src/data/split/b68596c1-5c66-44b7-a624-ebf3765bf25f_rocq.json index 6dc04ee..b827655 100644 --- a/server/src/data/split/b68596c1-5c66-44b7-a624-ebf3765bf25f_rocq.json +++ b/server/src/data/split/b68596c1-5c66-44b7-a624-ebf3765bf25f_rocq.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-28T23:24:04Z", "hubId": "b68596c1-5c66-44b7-a624-ebf3765bf25f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ef9e9a1e469ca9630dddf90d0a81b54911d6ce6b", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b6a7acef-af16-4f91-b88b-84055f15f45a_openaichat.json b/server/src/data/split/b6a7acef-af16-4f91-b88b-84055f15f45a_openaichat.json index 8a715cc..af02c12 100644 --- a/server/src/data/split/b6a7acef-af16-4f91-b88b-84055f15f45a_openaichat.json +++ b/server/src/data/split/b6a7acef-af16-4f91-b88b-84055f15f45a_openaichat.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 44, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2024-12-06T18:13:56Z", "hubId": "b6a7acef-af16-4f91-b88b-84055f15f45a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "df0d846c4fe0b54ec7a18c6dcdbf408e14fa340d", + "githubForks": 17, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b6df7a4b-f9f6-45c2-a6ea-f3682595c364_perplexitysearch.json b/server/src/data/split/b6df7a4b-f9f6-45c2-a6ea-f3682595c364_perplexitysearch.json index 06292a2..fe03725 100644 --- a/server/src/data/split/b6df7a4b-f9f6-45c2-a6ea-f3682595c364_perplexitysearch.json +++ b/server/src/data/split/b6df7a4b-f9f6-45c2-a6ea-f3682595c364_perplexitysearch.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-12T20:01:29Z", "hubId": "b6df7a4b-f9f6-45c2-a6ea-f3682595c364", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2b0c6ecc3652aa87023f63d05cddd91ab028c938", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b6f06d32-46f4-4b82-b2fa-9723380bcc79_mailgun.json b/server/src/data/split/b6f06d32-46f4-4b82-b2fa-9723380bcc79_mailgun.json index 1ecdbb4..1535f54 100644 --- a/server/src/data/split/b6f06d32-46f4-4b82-b2fa-9723380bcc79_mailgun.json +++ b/server/src/data/split/b6f06d32-46f4-4b82-b2fa-9723380bcc79_mailgun.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-20T14:48:57Z", "hubId": "b6f06d32-46f4-4b82-b2fa-9723380bcc79", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "mailgun", + "githubLatestCommit": "3c1072e3100a99bf85383f8d277024f121f28233", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/b6f193c8-a198-4ebb-a911-2ac4b35d4742_dalle.json b/server/src/data/split/b6f193c8-a198-4ebb-a911-2ac4b35d4742_dalle.json index c014353..f6251ea 100644 --- a/server/src/data/split/b6f193c8-a198-4ebb-a911-2ac4b35d4742_dalle.json +++ b/server/src/data/split/b6f193c8-a198-4ebb-a911-2ac4b35d4742_dalle.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-15T10:16:43Z", "hubId": "b6f193c8-a198-4ebb-a911-2ac4b35d4742", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e5b1e73d4d37f96e44600fecee90988edf24a6d2", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b708ea49-eb6d-425e-a68f-16e58b272898_devrev.json b/server/src/data/split/b708ea49-eb6d-425e-a68f-16e58b272898_devrev.json index 114525a..a6632a7 100644 --- a/server/src/data/split/b708ea49-eb6d-425e-a68f-16e58b272898_devrev.json +++ b/server/src/data/split/b708ea49-eb6d-425e-a68f-16e58b272898_devrev.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2024-12-20T21:24:37Z", "hubId": "b708ea49-eb6d-425e-a68f-16e58b272898", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2030d57a9155011c2d2c41c227ecb81789743825", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/b70b0121-236d-49a6-9018-4bc138d0ebce_inboxzero.json b/server/src/data/split/b70b0121-236d-49a6-9018-4bc138d0ebce_inboxzero.json index 18ac71f..2d1e735 100644 --- a/server/src/data/split/b70b0121-236d-49a6-9018-4bc138d0ebce_inboxzero.json +++ b/server/src/data/split/b70b0121-236d-49a6-9018-4bc138d0ebce_inboxzero.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7122, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T08:18:13Z", "hubId": "b70b0121-236d-49a6-9018-4bc138d0ebce", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "elie222", + "githubLatestCommit": "bf2c0261311c2fb4b2175e378080c8fa66c52289", + "githubForks": 723, + "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/b7374d41-b3fa-4743-92e9-ece46d3cb8f2_firebase.json b/server/src/data/split/b7374d41-b3fa-4743-92e9-ece46d3cb8f2_firebase.json index ea24ea8..4d80ff9 100644 --- a/server/src/data/split/b7374d41-b3fa-4743-92e9-ece46d3cb8f2_firebase.json +++ b/server/src/data/split/b7374d41-b3fa-4743-92e9-ece46d3cb8f2_firebase.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 108, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-15T14:31:18Z", "hubId": "b7374d41-b3fa-4743-92e9-ece46d3cb8f2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "gannonh", + "githubLatestCommit": "a4a181c3019b5a9546769b8ae504532cdab22ba4", + "githubForks": 24, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b74f9931-2269-422e-984e-055d1868fb31_awss3.json b/server/src/data/split/b74f9931-2269-422e-984e-055d1868fb31_awss3.json index dafca7c..69d7e98 100644 --- a/server/src/data/split/b74f9931-2269-422e-984e-055d1868fb31_awss3.json +++ b/server/src/data/split/b74f9931-2269-422e-984e-055d1868fb31_awss3.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 37, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2024-12-31T20:39:38Z", "hubId": "b74f9931-2269-422e-984e-055d1868fb31", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "aws-samples", + "githubLatestCommit": "ccba106ae3acda67146219f3c5fca84711ce630a", + "githubForks": 8, + "licenseType": "MIT-0" } \ No newline at end of file diff --git a/server/src/data/split/b7a41db6-2221-467b-b893-c095409e2dbd_xcodediagnostics.json b/server/src/data/split/b7a41db6-2221-467b-b893-c095409e2dbd_xcodediagnostics.json index 1d8a9ad..9d9c347 100644 --- a/server/src/data/split/b7a41db6-2221-467b-b893-c095409e2dbd_xcodediagnostics.json +++ b/server/src/data/split/b7a41db6-2221-467b-b893-c095409e2dbd_xcodediagnostics.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-24T18:21:03Z", "hubId": "b7a41db6-2221-467b-b893-c095409e2dbd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a4459670c757bf95ccd0e334649c2dc11cbf0a89", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b80200da-66d0-4405-81cf-6b8ca9081adc_mitmproxy.json b/server/src/data/split/b80200da-66d0-4405-81cf-6b8ca9081adc_mitmproxy.json index 88e05a3..b3879c3 100644 --- a/server/src/data/split/b80200da-66d0-4405-81cf-6b8ca9081adc_mitmproxy.json +++ b/server/src/data/split/b80200da-66d0-4405-81cf-6b8ca9081adc_mitmproxy.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-24T22:57:57Z", "hubId": "b80200da-66d0-4405-81cf-6b8ca9081adc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f4c23796b75d827bc19a4ab01d47f7e30691b359", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/b81d8413-1183-41af-9dac-1d1f09296401_claudeapi.json b/server/src/data/split/b81d8413-1183-41af-9dac-1d1f09296401_claudeapi.json index 6979c76..6dbb84e 100644 --- a/server/src/data/split/b81d8413-1183-41af-9dac-1d1f09296401_claudeapi.json +++ b/server/src/data/split/b81d8413-1183-41af-9dac-1d1f09296401_claudeapi.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-01-18T20:24:24Z", "hubId": "b81d8413-1183-41af-9dac-1d1f09296401", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d7deea7b9af76306dd303fc30d3846cccd7bf6b3", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/b831d229-d9c1-4e94-a77b-e84ba14fcc64_vscode.json b/server/src/data/split/b831d229-d9c1-4e94-a77b-e84ba14fcc64_vscode.json index d871fb6..6a0a5ae 100644 --- a/server/src/data/split/b831d229-d9c1-4e94-a77b-e84ba14fcc64_vscode.json +++ b/server/src/data/split/b831d229-d9c1-4e94-a77b-e84ba14fcc64_vscode.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 265, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-29T00:47:17Z", "hubId": "b831d229-d9c1-4e94-a77b-e84ba14fcc64", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7ee60c8e6529c03fda76bef36fe78452bb9a575e", + "githubForks": 69, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b832d3cc-12ed-498a-9224-b4b351170c22_resourcehub.json b/server/src/data/split/b832d3cc-12ed-498a-9224-b4b351170c22_resourcehub.json index fab5ce2..413cb5f 100644 --- a/server/src/data/split/b832d3cc-12ed-498a-9224-b4b351170c22_resourcehub.json +++ b/server/src/data/split/b832d3cc-12ed-498a-9224-b4b351170c22_resourcehub.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-22T01:51:56Z", "hubId": "b832d3cc-12ed-498a-9224-b4b351170c22", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dc6cb540f9b29f9683ae3c5cc8d288504e0d29da", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/b87a8855-9889-4e4c-a484-8af57509b5c9_safewallet.json b/server/src/data/split/b87a8855-9889-4e4c-a484-8af57509b5c9_safewallet.json index bbee9c8..5bc5e5b 100644 --- a/server/src/data/split/b87a8855-9889-4e4c-a484-8af57509b5c9_safewallet.json +++ b/server/src/data/split/b87a8855-9889-4e4c-a484-8af57509b5c9_safewallet.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-23T09:06:42Z", "hubId": "b87a8855-9889-4e4c-a484-8af57509b5c9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6b03332695c2023b0ce0a7557a71074551f160ac", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b905fac1-2eac-4fc7-9619-a70ce599664f_runshellcommand.json b/server/src/data/split/b905fac1-2eac-4fc7-9619-a70ce599664f_runshellcommand.json index 6686e2f..5cf856c 100644 --- a/server/src/data/split/b905fac1-2eac-4fc7-9619-a70ce599664f_runshellcommand.json +++ b/server/src/data/split/b905fac1-2eac-4fc7-9619-a70ce599664f_runshellcommand.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-15T10:51:29Z", "hubId": "b905fac1-2eac-4fc7-9619-a70ce599664f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de4dd26b92d74eb3326382c19992f1ed41f80553", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/b906e079-8e96-4811-88a4-22b76cafc538_biomart.json b/server/src/data/split/b906e079-8e96-4811-88a4-22b76cafc538_biomart.json index 539fae5..1349b62 100644 --- a/server/src/data/split/b906e079-8e96-4811-88a4-22b76cafc538_biomart.json +++ b/server/src/data/split/b906e079-8e96-4811-88a4-22b76cafc538_biomart.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-04-08T15:57:31Z", "hubId": "b906e079-8e96-4811-88a4-22b76cafc538", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3315fa1518c744820991d95a10d7465b70435a23", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b9099118-2a3c-46da-8500-3ad9d91de733_postgresqlfinder.json b/server/src/data/split/b9099118-2a3c-46da-8500-3ad9d91de733_postgresqlfinder.json index 192a15b..c9f54bf 100644 --- a/server/src/data/split/b9099118-2a3c-46da-8500-3ad9d91de733_postgresqlfinder.json +++ b/server/src/data/split/b9099118-2a3c-46da-8500-3ad9d91de733_postgresqlfinder.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-04T04:36:38Z", "hubId": "b9099118-2a3c-46da-8500-3ad9d91de733", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0ec808bb01fce8e2bbf46d304ca25bfe5208b2a1", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/b911584e-3b63-4eb7-a84e-37829bd4f777_dockersandbox.json b/server/src/data/split/b911584e-3b63-4eb7-a84e-37829bd4f777_dockersandbox.json index 23e60ec..3677705 100644 --- a/server/src/data/split/b911584e-3b63-4eb7-a84e-37829bd4f777_dockersandbox.json +++ b/server/src/data/split/b911584e-3b63-4eb7-a84e-37829bd4f777_dockersandbox.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-10T23:56:09Z", "hubId": "b911584e-3b63-4eb7-a84e-37829bd4f777", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c8465f7f7689ce8ff0e373a85807d247e43c7f4b", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b943a39e-1ace-4f56-88e3-c38fa5dd94be_reddit.json b/server/src/data/split/b943a39e-1ace-4f56-88e3-c38fa5dd94be_reddit.json index 52d454f..87776a3 100644 --- a/server/src/data/split/b943a39e-1ace-4f56-88e3-c38fa5dd94be_reddit.json +++ b/server/src/data/split/b943a39e-1ace-4f56-88e3-c38fa5dd94be_reddit.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 35, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-14T07:27:22Z", "hubId": "b943a39e-1ace-4f56-88e3-c38fa5dd94be", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fb0816aa75a49ba4470dc84de0ca70e63dbd533b", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/b974c688-e493-4ae9-b524-5b230f89e101_wecom.json b/server/src/data/split/b974c688-e493-4ae9-b524-5b230f89e101_wecom.json index c4813a2..4e7685e 100644 --- a/server/src/data/split/b974c688-e493-4ae9-b524-5b230f89e101_wecom.json +++ b/server/src/data/split/b974c688-e493-4ae9-b524-5b230f89e101_wecom.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 18, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-01-22T15:51:29Z", "hubId": "b974c688-e493-4ae9-b524-5b230f89e101", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b6d641592e64b845961fca3fc9817887f6007d0f", + "githubForks": 2, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/b98ac704-9f58-4066-ad6e-f75c47bfa46d_databricks.json b/server/src/data/split/b98ac704-9f58-4066-ad6e-f75c47bfa46d_databricks.json index 097dc9c..8190e1c 100644 --- a/server/src/data/split/b98ac704-9f58-4066-ad6e-f75c47bfa46d_databricks.json +++ b/server/src/data/split/b98ac704-9f58-4066-ad6e-f75c47bfa46d_databricks.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-09T05:03:03Z", "hubId": "b98ac704-9f58-4066-ad6e-f75c47bfa46d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "JordiNeil", + "githubLatestCommit": "dfa3da0a2c058840f06c7bb007bcf3fe3c3fb87c", + "githubForks": 9 } \ No newline at end of file diff --git a/server/src/data/split/b9b894ef-4ce9-4943-8e03-cb760d257111_projecthubgithub.json b/server/src/data/split/b9b894ef-4ce9-4943-8e03-cb760d257111_projecthubgithub.json index 2f0326e..91af2a3 100644 --- a/server/src/data/split/b9b894ef-4ce9-4943-8e03-cb760d257111_projecthubgithub.json +++ b/server/src/data/split/b9b894ef-4ce9-4943-8e03-cb760d257111_projecthubgithub.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-13T14:52:28Z", "hubId": "b9b894ef-4ce9-4943-8e03-cb760d257111", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "18627491f47e9327fe326491d06f74e1053614c3", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/b9fefed5-56c1-4928-baf1-2a60c8f58a8c_wolframalpha.json b/server/src/data/split/b9fefed5-56c1-4928-baf1-2a60c8f58a8c_wolframalpha.json index fb1be51..ff8cac9 100644 --- a/server/src/data/split/b9fefed5-56c1-4928-baf1-2a60c8f58a8c_wolframalpha.json +++ b/server/src/data/split/b9fefed5-56c1-4928-baf1-2a60c8f58a8c_wolframalpha.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-01-11T15:38:26Z", "hubId": "b9fefed5-56c1-4928-baf1-2a60c8f58a8c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a92556e5a3543dbf93948ee415e5129ecdf617c6", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ba5270f8-4c96-4461-9618-88c684c5e86f_audiointerface.json b/server/src/data/split/ba5270f8-4c96-4461-9618-88c684c5e86f_audiointerface.json index 035de9e..6e1de98 100644 --- a/server/src/data/split/ba5270f8-4c96-4461-9618-88c684c5e86f_audiointerface.json +++ b/server/src/data/split/ba5270f8-4c96-4461-9618-88c684c5e86f_audiointerface.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-14T09:13:30Z", "hubId": "ba5270f8-4c96-4461-9618-88c684c5e86f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "08672f79da20ac91fc2279741595fc6ece7b8d6a", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ba85c0a9-7a86-45f8-89bb-127625aa6711_redmine.json b/server/src/data/split/ba85c0a9-7a86-45f8-89bb-127625aa6711_redmine.json index 2da6c9e..d85669c 100644 --- a/server/src/data/split/ba85c0a9-7a86-45f8-89bb-127625aa6711_redmine.json +++ b/server/src/data/split/ba85c0a9-7a86-45f8-89bb-127625aa6711_redmine.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-09T11:48:58Z", "hubId": "ba85c0a9-7a86-45f8-89bb-127625aa6711", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "505d2ef756380ccb1463d8955e71b2d9350a91d9", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/baaf64b5-7512-4ea6-8469-fa2f8b0a8a44_memos.json b/server/src/data/split/baaf64b5-7512-4ea6-8469-fa2f8b0a8a44_memos.json index de1c473..193e1ae 100644 --- a/server/src/data/split/baaf64b5-7512-4ea6-8469-fa2f8b0a8a44_memos.json +++ b/server/src/data/split/baaf64b5-7512-4ea6-8469-fa2f8b0a8a44_memos.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-03-18T09:17:51Z", "hubId": "baaf64b5-7512-4ea6-8469-fa2f8b0a8a44", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d0ded65bdfe44e8d569f526c75c879645a77ef46", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/babf683a-0c16-42c8-b60c-a46c34a28cfb_ubereatsautomation.json b/server/src/data/split/babf683a-0c16-42c8-b60c-a46c34a28cfb_ubereatsautomation.json index 61651ee..40d5001 100644 --- a/server/src/data/split/babf683a-0c16-42c8-b60c-a46c34a28cfb_ubereatsautomation.json +++ b/server/src/data/split/babf683a-0c16-42c8-b60c-a46c34a28cfb_ubereatsautomation.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-05T11:16:13Z", "hubId": "babf683a-0c16-42c8-b60c-a46c34a28cfb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "336c2a7dbd32b1eb51fb1d1f89f2f17322070d71", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/bac1c03d-615b-44f1-92e2-41ee6da1ea35_zotero.json b/server/src/data/split/bac1c03d-615b-44f1-92e2-41ee6da1ea35_zotero.json index 7d79b57..649016f 100644 --- a/server/src/data/split/bac1c03d-615b-44f1-92e2-41ee6da1ea35_zotero.json +++ b/server/src/data/split/bac1c03d-615b-44f1-92e2-41ee6da1ea35_zotero.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 33, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-03-28T05:06:54Z", "hubId": "bac1c03d-615b-44f1-92e2-41ee6da1ea35", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3d34f721057ce9be343ec85d58fdded7d8b8eeea", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bac81d07-67f2-4fcf-921c-495d1c3213c7_linkupsearch.json b/server/src/data/split/bac81d07-67f2-4fcf-921c-495d1c3213c7_linkupsearch.json index dad4ab3..c3fd6c4 100644 --- a/server/src/data/split/bac81d07-67f2-4fcf-921c-495d1c3213c7_linkupsearch.json +++ b/server/src/data/split/bac81d07-67f2-4fcf-921c-495d1c3213c7_linkupsearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 28, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-24T14:14:34Z", "hubId": "bac81d07-67f2-4fcf-921c-495d1c3213c7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4882276ad3fc76b2525904fd0c39ab456748a786", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bae1ee7e-e272-477a-8d55-a99b70dc4592_mcpcompass.json b/server/src/data/split/bae1ee7e-e272-477a-8d55-a99b70dc4592_mcpcompass.json index 15a9868..fb2f236 100644 --- a/server/src/data/split/bae1ee7e-e272-477a-8d55-a99b70dc4592_mcpcompass.json +++ b/server/src/data/split/bae1ee7e-e272-477a-8d55-a99b70dc4592_mcpcompass.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 80, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-01-07T08:07:39Z", "hubId": "bae1ee7e-e272-477a-8d55-a99b70dc4592", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "liuyoshio", + "githubLatestCommit": "c7caa5cab78b0247bda17bbccf1ee75cff5912f7", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bae513d6-78d9-4fe4-9567-eb6e7e0b160b_taskwarrior.json b/server/src/data/split/bae513d6-78d9-4fe4-9567-eb6e7e0b160b_taskwarrior.json index 730d42c..2244b8d 100644 --- a/server/src/data/split/bae513d6-78d9-4fe4-9567-eb6e7e0b160b_taskwarrior.json +++ b/server/src/data/split/bae513d6-78d9-4fe4-9567-eb6e7e0b160b_taskwarrior.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-16T01:15:03Z", "hubId": "bae513d6-78d9-4fe4-9567-eb6e7e0b160b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d502ad2799d00ac2d879c6f279b0795fc3fdf02c", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bb5d9c0f-f546-4257-98c3-923145015d8e_yapi.json b/server/src/data/split/bb5d9c0f-f546-4257-98c3-923145015d8e_yapi.json index dbfa9c0..603f3a8 100644 --- a/server/src/data/split/bb5d9c0f-f546-4257-98c3-923145015d8e_yapi.json +++ b/server/src/data/split/bb5d9c0f-f546-4257-98c3-923145015d8e_yapi.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-04-28T08:14:19Z", "hubId": "bb5d9c0f-f546-4257-98c3-923145015d8e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3784ffe144952d532f57fbfbf0b0bdf40b0971d9", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bb7d9155-a717-4729-b931-1203de958eeb_gmail.json b/server/src/data/split/bb7d9155-a717-4729-b931-1203de958eeb_gmail.json index 16963c6..1559c5b 100644 --- a/server/src/data/split/bb7d9155-a717-4729-b931-1203de958eeb_gmail.json +++ b/server/src/data/split/bb7d9155-a717-4729-b931-1203de958eeb_gmail.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-02T00:36:01Z", "hubId": "bb7d9155-a717-4729-b931-1203de958eeb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "810812f2483f63e200c93ed49738a5186d0f092e", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/bb878354-d8dd-40f7-a0df-919bafbcc5e0_azuremcpmodelcontextprotocolforclaudedesktop.json b/server/src/data/split/bb878354-d8dd-40f7-a0df-919bafbcc5e0_azuremcpmodelcontextprotocolforclaudedesktop.json index 9e52a0c..c689ce9 100644 --- a/server/src/data/split/bb878354-d8dd-40f7-a0df-919bafbcc5e0_azuremcpmodelcontextprotocolforclaudedesktop.json +++ b/server/src/data/split/bb878354-d8dd-40f7-a0df-919bafbcc5e0_azuremcpmodelcontextprotocolforclaudedesktop.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-04-20T15:23:54.231Z", - "updatedAt": "2025-04-20T15:23:54.231Z", + "updatedAt": "2025-04-25T17:10:43Z", "hubId": "bb878354-d8dd-40f7-a0df-919bafbcc5e0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0aa6f303012d57dfab70130202cda73768872358", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bbdf6257-9f90-42fb-9fe3-10fcf9cb34cd_youtube.json b/server/src/data/split/bbdf6257-9f90-42fb-9fe3-10fcf9cb34cd_youtube.json index fa85269..a1a0b10 100644 --- a/server/src/data/split/bbdf6257-9f90-42fb-9fe3-10fcf9cb34cd_youtube.json +++ b/server/src/data/split/bbdf6257-9f90-42fb-9fe3-10fcf9cb34cd_youtube.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 136, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T13:08:44Z", "hubId": "bbdf6257-9f90-42fb-9fe3-10fcf9cb34cd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "ZubeidHendricks", + "githubLatestCommit": "88d0262682e9d31b129c208f48e55845b417b98a", + "githubForks": 21 } \ No newline at end of file diff --git a/server/src/data/split/bc04a0b1-fd8f-46cd-aa8b-2bce430f23e1_ipgeolocator.json b/server/src/data/split/bc04a0b1-fd8f-46cd-aa8b-2bce430f23e1_ipgeolocator.json index 3dea109..63a5ab9 100644 --- a/server/src/data/split/bc04a0b1-fd8f-46cd-aa8b-2bce430f23e1_ipgeolocator.json +++ b/server/src/data/split/bc04a0b1-fd8f-46cd-aa8b-2bce430f23e1_ipgeolocator.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-31T05:29:18Z", "hubId": "bc04a0b1-fd8f-46cd-aa8b-2bce430f23e1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a83a773307b9599b3bdfe119aae7225fa4841600", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/bc054ae3-8056-4834-bed3-37ca66a00e90_supos.json b/server/src/data/split/bc054ae3-8056-4834-bed3-37ca66a00e90_supos.json index 2a84a41..b95d483 100644 --- a/server/src/data/split/bc054ae3-8056-4834-bed3-37ca66a00e90_supos.json +++ b/server/src/data/split/bc054ae3-8056-4834-bed3-37ca66a00e90_supos.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-18T05:56:47Z", "hubId": "bc054ae3-8056-4834-bed3-37ca66a00e90", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bcc8c91490d7076234a9c751145e2279a1c808e0", + "githubForks": 3, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bc120c0d-233f-4c53-a880-d00f3eb6b100_gmail.json b/server/src/data/split/bc120c0d-233f-4c53-a880-d00f3eb6b100_gmail.json index 2fc7682..c8868e4 100644 --- a/server/src/data/split/bc120c0d-233f-4c53-a880-d00f3eb6b100_gmail.json +++ b/server/src/data/split/bc120c0d-233f-4c53-a880-d00f3eb6b100_gmail.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-02-18T17:02:53Z", "hubId": "bc120c0d-233f-4c53-a880-d00f3eb6b100", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "95f82084d706bbb418309cf873765b50c0983ba2", + "githubForks": 2, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/bc47deaf-352b-470f-a436-8786767cc7a9_podman.json b/server/src/data/split/bc47deaf-352b-470f-a436-8786767cc7a9_podman.json index 0e6fcd5..e1b968d 100644 --- a/server/src/data/split/bc47deaf-352b-470f-a436-8786767cc7a9_podman.json +++ b/server/src/data/split/bc47deaf-352b-470f-a436-8786767cc7a9_podman.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-24T05:16:00Z", "hubId": "bc47deaf-352b-470f-a436-8786767cc7a9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "265fc107aefd289fea40851167adfc25bb9b7233", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bc5fac4f-dc7f-4079-96f4-f1eeac84d044_lingodev.json b/server/src/data/split/bc5fac4f-dc7f-4079-96f4-f1eeac84d044_lingodev.json index c32d0f5..b4ed0f8 100644 --- a/server/src/data/split/bc5fac4f-dc7f-4079-96f4-f1eeac84d044_lingodev.json +++ b/server/src/data/split/bc5fac4f-dc7f-4079-96f4-f1eeac84d044_lingodev.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1688, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T22:27:53Z", "hubId": "bc5fac4f-dc7f-4079-96f4-f1eeac84d044", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "lingodotdev", + "githubLatestCommit": "f70690e1d2977369d92ef0f17b60a6e17f6e2abb", + "githubForks": 82, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bc781818-9e79-48c6-8ada-f2db6d56e733_godot.json b/server/src/data/split/bc781818-9e79-48c6-8ada-f2db6d56e733_godot.json index 8d9a7d5..99b95b6 100644 --- a/server/src/data/split/bc781818-9e79-48c6-8ada-f2db6d56e733_godot.json +++ b/server/src/data/split/bc781818-9e79-48c6-8ada-f2db6d56e733_godot.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 334, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-23T06:08:41Z", "hubId": "bc781818-9e79-48c6-8ada-f2db6d56e733", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Coding-Solo", + "githubLatestCommit": "e39018be7a8426099ff8d6dee3479722c16f0ae3", + "githubForks": 30, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bca79f7e-9875-4fcc-8b7d-ceb494d03cc3_blockchaincomdataandquery.json b/server/src/data/split/bca79f7e-9875-4fcc-8b7d-ceb494d03cc3_blockchaincomdataandquery.json index 5106768..182e83b 100644 --- a/server/src/data/split/bca79f7e-9875-4fcc-8b7d-ceb494d03cc3_blockchaincomdataandquery.json +++ b/server/src/data/split/bca79f7e-9875-4fcc-8b7d-ceb494d03cc3_blockchaincomdataandquery.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-21T23:24:13Z", "hubId": "bca79f7e-9875-4fcc-8b7d-ceb494d03cc3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7e4f4da5aa6f69a75511c8210c9f029ef0b0fd6d", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/bce9ee0f-9860-4892-aa9e-1aaf7a738f14_bettermcpfileserver.json b/server/src/data/split/bce9ee0f-9860-4892-aa9e-1aaf7a738f14_bettermcpfileserver.json index d6983ca..0987f0c 100644 --- a/server/src/data/split/bce9ee0f-9860-4892-aa9e-1aaf7a738f14_bettermcpfileserver.json +++ b/server/src/data/split/bce9ee0f-9860-4892-aa9e-1aaf7a738f14_bettermcpfileserver.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-14T20:43:00Z", "hubId": "bce9ee0f-9860-4892-aa9e-1aaf7a738f14", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cffb63cab89a98106f329a8fb26ecdac4c422ac3", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bcf1380b-0ac9-4209-a2be-1765a29578c5_setuupideeplinks.json b/server/src/data/split/bcf1380b-0ac9-4209-a2be-1765a29578c5_setuupideeplinks.json index 25a24f4..8c0f70d 100644 --- a/server/src/data/split/bcf1380b-0ac9-4209-a2be-1765a29578c5_setuupideeplinks.json +++ b/server/src/data/split/bcf1380b-0ac9-4209-a2be-1765a29578c5_setuupideeplinks.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-23T11:45:45Z", "hubId": "bcf1380b-0ac9-4209-a2be-1765a29578c5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "992325ec9ee1349beac6cebe8c337f9ea5548eb1", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bd266c3b-50ee-434f-9867-faa16f2f9819_solana.json b/server/src/data/split/bd266c3b-50ee-434f-9867-faa16f2f9819_solana.json index e37f3e0..6fddaf9 100644 --- a/server/src/data/split/bd266c3b-50ee-434f-9867-faa16f2f9819_solana.json +++ b/server/src/data/split/bd266c3b-50ee-434f-9867-faa16f2f9819_solana.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-04-08T11:11:55Z", "hubId": "bd266c3b-50ee-434f-9867-faa16f2f9819", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9db0ca3192352d15a3f5968072e2a4cfa7e706ea", + "githubForks": 6, + "licenseType": "Unlicense" } \ No newline at end of file diff --git a/server/src/data/split/bd297f66-229e-43f2-b839-ef7e3e61040b_textdiffpython.json b/server/src/data/split/bd297f66-229e-43f2-b839-ef7e3e61040b_textdiffpython.json index 671eebc..34480a1 100644 --- a/server/src/data/split/bd297f66-229e-43f2-b839-ef7e3e61040b_textdiffpython.json +++ b/server/src/data/split/bd297f66-229e-43f2-b839-ef7e3e61040b_textdiffpython.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-01-21T00:35:46Z", "hubId": "bd297f66-229e-43f2-b839-ef7e3e61040b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b0fd229adaf164971db2905920b8fbc37e04b26b", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bd37ef80-38b6-4f27-8eed-126da493236b_apimaticmcp.json b/server/src/data/split/bd37ef80-38b6-4f27-8eed-126da493236b_apimaticmcp.json index 1ef55f6..62078e3 100644 --- a/server/src/data/split/bd37ef80-38b6-4f27-8eed-126da493236b_apimaticmcp.json +++ b/server/src/data/split/bd37ef80-38b6-4f27-8eed-126da493236b_apimaticmcp.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-19T11:57:21Z", "hubId": "bd37ef80-38b6-4f27-8eed-126da493236b", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "apimatic", + "githubLatestCommit": "8e762bbd8efbfbc79553070b9e731d5a0f8df3a0", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/bd40898b-68cf-4a4e-ab0f-2bd1397d8404_unifai.json b/server/src/data/split/bd40898b-68cf-4a4e-ab0f-2bd1397d8404_unifai.json index c7fafbe..2f178ae 100644 --- a/server/src/data/split/bd40898b-68cf-4a4e-ab0f-2bd1397d8404_unifai.json +++ b/server/src/data/split/bd40898b-68cf-4a4e-ab0f-2bd1397d8404_unifai.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-11T15:02:39Z", "hubId": "bd40898b-68cf-4a4e-ab0f-2bd1397d8404", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "unifai-network", + "githubLatestCommit": "a64a573e1fc4896604ed53ed1574d98cd93f4876", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/bd4fe04d-5a37-4a95-978a-ccdf1599be0e_mysql.json b/server/src/data/split/bd4fe04d-5a37-4a95-978a-ccdf1599be0e_mysql.json index 741612c..599267a 100644 --- a/server/src/data/split/bd4fe04d-5a37-4a95-978a-ccdf1599be0e_mysql.json +++ b/server/src/data/split/bd4fe04d-5a37-4a95-978a-ccdf1599be0e_mysql.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-06T02:05:58Z", "hubId": "bd4fe04d-5a37-4a95-978a-ccdf1599be0e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "98b1e26c84abec878c570640e3735818d93473f1", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/bd5174b9-d1f5-445c-a4fc-56fffa74467b_facegenerator.json b/server/src/data/split/bd5174b9-d1f5-445c-a4fc-56fffa74467b_facegenerator.json index dca5c87..f91b5d3 100644 --- a/server/src/data/split/bd5174b9-d1f5-445c-a4fc-56fffa74467b_facegenerator.json +++ b/server/src/data/split/bd5174b9-d1f5-445c-a4fc-56fffa74467b_facegenerator.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-13T15:22:26Z", "hubId": "bd5174b9-d1f5-445c-a4fc-56fffa74467b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8cef3f9170399c0f297c4d46abaef644fe38e0dd", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bd62571e-d9fe-4674-a8f3-bda602e1ef34_zotero.json b/server/src/data/split/bd62571e-d9fe-4674-a8f3-bda602e1ef34_zotero.json index 0aefd74..72764b5 100644 --- a/server/src/data/split/bd62571e-d9fe-4674-a8f3-bda602e1ef34_zotero.json +++ b/server/src/data/split/bd62571e-d9fe-4674-a8f3-bda602e1ef34_zotero.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-11T09:28:25Z", "hubId": "bd62571e-d9fe-4674-a8f3-bda602e1ef34", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a7f9bf4983e9715a8c4d65f41a8f228a7fe7b11f", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bd7b0230-b98c-462b-a2da-6e7ad306af57_minima.json b/server/src/data/split/bd7b0230-b98c-462b-a2da-6e7ad306af57_minima.json index 133eb6e..eca02ff 100644 --- a/server/src/data/split/bd7b0230-b98c-462b-a2da-6e7ad306af57_minima.json +++ b/server/src/data/split/bd7b0230-b98c-462b-a2da-6e7ad306af57_minima.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 721, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-11T02:45:58Z", "hubId": "bd7b0230-b98c-462b-a2da-6e7ad306af57", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "dmayboroda", + "githubLatestCommit": "5a11841911c6c262fb2650ef6a0bb2b27ef4a131", + "githubForks": 69, + "licenseType": "MPL-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bd82c8df-a5c6-4fed-b101-b48047199c7d_gmail.json b/server/src/data/split/bd82c8df-a5c6-4fed-b101-b48047199c7d_gmail.json index 02a24ae..4e9f6b9 100644 --- a/server/src/data/split/bd82c8df-a5c6-4fed-b101-b48047199c7d_gmail.json +++ b/server/src/data/split/bd82c8df-a5c6-4fed-b101-b48047199c7d_gmail.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-02-02T20:58:10Z", "hubId": "bd82c8df-a5c6-4fed-b101-b48047199c7d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e35d8bedcd4c2c3bfee630abbe5a913c94e13c80", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/bd876554-9934-45c7-a863-0b1347b77289_georgia511.json b/server/src/data/split/bd876554-9934-45c7-a863-0b1347b77289_georgia511.json index 2207413..7cf7c67 100644 --- a/server/src/data/split/bd876554-9934-45c7-a863-0b1347b77289_georgia511.json +++ b/server/src/data/split/bd876554-9934-45c7-a863-0b1347b77289_georgia511.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-06T02:38:54Z", "hubId": "bd876554-9934-45c7-a863-0b1347b77289", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "732a6bf9424b9d00606089407ecf5d8bfbb2c5c9", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/bd9b63ec-63d3-4f8c-91d9-9182cc781be7_hex.json b/server/src/data/split/bd9b63ec-63d3-4f8c-91d9-9182cc781be7_hex.json index 27ba9b9..d3af8e1 100644 --- a/server/src/data/split/bd9b63ec-63d3-4f8c-91d9-9182cc781be7_hex.json +++ b/server/src/data/split/bd9b63ec-63d3-4f8c-91d9-9182cc781be7_hex.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-20T12:24:27Z", "hubId": "bd9b63ec-63d3-4f8c-91d9-9182cc781be7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7fe3f3d5534d06b1d271ecc309461656dfe38652", + "githubForks": 3, + "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/bdd02625-3860-4872-a510-a9ba9be7e34a_watsonxflows.json b/server/src/data/split/bdd02625-3860-4872-a510-a9ba9be7e34a_watsonxflows.json index b128797..4eecfea 100644 --- a/server/src/data/split/bdd02625-3860-4872-a510-a9ba9be7e34a_watsonxflows.json +++ b/server/src/data/split/bdd02625-3860-4872-a510-a9ba9be7e34a_watsonxflows.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 57, + "githubStars": 81, "downloadCount": 32, "createdAt": "2025-02-18T05:46:21.470556Z", - "updatedAt": "2025-02-18T05:46:21.470556Z", + "updatedAt": "2025-03-27T12:19:38Z", "hubId": "bdd02625-3860-4872-a510-a9ba9be7e34a", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "d04e77f6ea588327f51108f27bcb7964f7f36e2c", + "githubForks": 26, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bee1ae3f-94e4-44c5-8485-6af21cd02d89_serpersearchandscrape.json b/server/src/data/split/bee1ae3f-94e4-44c5-8485-6af21cd02d89_serpersearchandscrape.json index 39490f3..6f4cb3a 100644 --- a/server/src/data/split/bee1ae3f-94e4-44c5-8485-6af21cd02d89_serpersearchandscrape.json +++ b/server/src/data/split/bee1ae3f-94e4-44c5-8485-6af21cd02d89_serpersearchandscrape.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-03-13T00:28:41Z", "hubId": "bee1ae3f-94e4-44c5-8485-6af21cd02d89", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f18d0b108fe38110dc15ccbfe6278bb5f45a53a1", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/bf14d419-3b59-4a2d-bac1-384550d14822_mockdatagenerator.json b/server/src/data/split/bf14d419-3b59-4a2d-bac1-384550d14822_mockdatagenerator.json index 17c872b..c80d034 100644 --- a/server/src/data/split/bf14d419-3b59-4a2d-bac1-384550d14822_mockdatagenerator.json +++ b/server/src/data/split/bf14d419-3b59-4a2d-bac1-384550d14822_mockdatagenerator.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-11T09:40:34Z", "hubId": "bf14d419-3b59-4a2d-bac1-384550d14822", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "70c584b3f08bc867f7b80cf24ab12efcbe22e1b9", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/bf52fb90-cb73-43ce-b59b-de0b0c1afaf5_dockermanager.json b/server/src/data/split/bf52fb90-cb73-43ce-b59b-de0b0c1afaf5_dockermanager.json index 36b36d6..1260ba7 100644 --- a/server/src/data/split/bf52fb90-cb73-43ce-b59b-de0b0c1afaf5_dockermanager.json +++ b/server/src/data/split/bf52fb90-cb73-43ce-b59b-de0b0c1afaf5_dockermanager.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-17T16:35:27Z", "hubId": "bf52fb90-cb73-43ce-b59b-de0b0c1afaf5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b274e160eecde3a23b549db339edc94088d3f929", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/bf66a767-1fa1-4ec3-af96-481980cc374a_contextmanager.json b/server/src/data/split/bf66a767-1fa1-4ec3-af96-481980cc374a_contextmanager.json index 265745b..679796b 100644 --- a/server/src/data/split/bf66a767-1fa1-4ec3-af96-481980cc374a_contextmanager.json +++ b/server/src/data/split/bf66a767-1fa1-4ec3-af96-481980cc374a_contextmanager.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-15T18:02:10Z", "hubId": "bf66a767-1fa1-4ec3-af96-481980cc374a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c965fc33d488d1550a87edc612677619e9ca1831", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/bf8e3074-3ea2-49e9-a959-83ccddfccbf1_hackernewsapi.json b/server/src/data/split/bf8e3074-3ea2-49e9-a959-83ccddfccbf1_hackernewsapi.json index 7de77da..ee835be 100644 --- a/server/src/data/split/bf8e3074-3ea2-49e9-a959-83ccddfccbf1_hackernewsapi.json +++ b/server/src/data/split/bf8e3074-3ea2-49e9-a959-83ccddfccbf1_hackernewsapi.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-11T23:17:28Z", "hubId": "bf8e3074-3ea2-49e9-a959-83ccddfccbf1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "db8e867811de0001fda7ae2a381ad4b2394df8c9", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/bfa524a1-6acb-4bde-a7f6-fc6382b4d39a_docker.json b/server/src/data/split/bfa524a1-6acb-4bde-a7f6-fc6382b4d39a_docker.json index 8dbf408..eccec21 100644 --- a/server/src/data/split/bfa524a1-6acb-4bde-a7f6-fc6382b4d39a_docker.json +++ b/server/src/data/split/bfa524a1-6acb-4bde-a7f6-fc6382b4d39a_docker.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 0, + "githubStars": 364, "downloadCount": 0, "createdAt": "2025-03-15T07:55:06.21384+00:00", - "updatedAt": "2025-03-15T07:55:06.21384+00:00", + "updatedAt": "2025-04-22T14:09:05Z", "hubId": "bfa524a1-6acb-4bde-a7f6-fc6382b4d39a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "48c549a9f10a40b8911d28c507f63d19779027ed", + "githubForks": 35, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/c06ebb8e-cfba-4acb-857e-cf4ee1b30839_macossay.json b/server/src/data/split/c06ebb8e-cfba-4acb-857e-cf4ee1b30839_macossay.json index e949377..211ac45 100644 --- a/server/src/data/split/c06ebb8e-cfba-4acb-857e-cf4ee1b30839_macossay.json +++ b/server/src/data/split/c06ebb8e-cfba-4acb-857e-cf4ee1b30839_macossay.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-07T03:15:18Z", "hubId": "c06ebb8e-cfba-4acb-857e-cf4ee1b30839", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f79862b600dd8cdff09f13e91dda450800ac78a5", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c08a6784-aff2-4339-8183-591571533cc8_chainofdraft.json b/server/src/data/split/c08a6784-aff2-4339-8183-591571533cc8_chainofdraft.json index 7c922d9..0666486 100644 --- a/server/src/data/split/c08a6784-aff2-4339-8183-591571533cc8_chainofdraft.json +++ b/server/src/data/split/c08a6784-aff2-4339-8183-591571533cc8_chainofdraft.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-04T00:57:41Z", "hubId": "c08a6784-aff2-4339-8183-591571533cc8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a4a5e767ea16eafa90534bb247462ae5b03cf2d0", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/c0a7ae37-127f-44ed-a577-897627d8b815_cloudflare.json b/server/src/data/split/c0a7ae37-127f-44ed-a577-897627d8b815_cloudflare.json index 9237115..d5cef9a 100644 --- a/server/src/data/split/c0a7ae37-127f-44ed-a577-897627d8b815_cloudflare.json +++ b/server/src/data/split/c0a7ae37-127f-44ed-a577-897627d8b815_cloudflare.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-02-26T11:55:22Z", "hubId": "c0a7ae37-127f-44ed-a577-897627d8b815", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6f02934331feaf4355ad00e8b3a0e542fface85d", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/c0e9f0b5-0daa-4c2b-9ca0-23a75029e060_perplexitysearch.json b/server/src/data/split/c0e9f0b5-0daa-4c2b-9ca0-23a75029e060_perplexitysearch.json index 6c96e21..5b01858 100644 --- a/server/src/data/split/c0e9f0b5-0daa-4c2b-9ca0-23a75029e060_perplexitysearch.json +++ b/server/src/data/split/c0e9f0b5-0daa-4c2b-9ca0-23a75029e060_perplexitysearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-05T11:36:21Z", "hubId": "c0e9f0b5-0daa-4c2b-9ca0-23a75029e060", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "512db0675fe69b2fcad6c2ff985325836385e395", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c122c79a-a95d-4b11-b14f-dd6792651ea8_uniprot.json b/server/src/data/split/c122c79a-a95d-4b11-b14f-dd6792651ea8_uniprot.json index 51573fa..099ce8d 100644 --- a/server/src/data/split/c122c79a-a95d-4b11-b14f-dd6792651ea8_uniprot.json +++ b/server/src/data/split/c122c79a-a95d-4b11-b14f-dd6792651ea8_uniprot.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-11T11:20:12Z", "hubId": "c122c79a-a95d-4b11-b14f-dd6792651ea8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b563a66d8b962c81cdf620ebdd11284d0c52b7bd", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c129d0e5-20f1-46ba-b452-b030e869f33a_voicerecorderwhisper.json b/server/src/data/split/c129d0e5-20f1-46ba-b452-b030e869f33a_voicerecorderwhisper.json index 09ac2f7..fdf4131 100644 --- a/server/src/data/split/c129d0e5-20f1-46ba-b452-b030e869f33a_voicerecorderwhisper.json +++ b/server/src/data/split/c129d0e5-20f1-46ba-b452-b030e869f33a_voicerecorderwhisper.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-03T16:27:07Z", "hubId": "c129d0e5-20f1-46ba-b452-b030e869f33a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d623846cce206bdd06587883832fa2a84e677914", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c12c37f0-7f0b-4704-915d-169b2e4d4053_axiomcontext.json b/server/src/data/split/c12c37f0-7f0b-4704-915d-169b2e4d4053_axiomcontext.json index 6e74073..6f2b9e2 100644 --- a/server/src/data/split/c12c37f0-7f0b-4704-915d-169b2e4d4053_axiomcontext.json +++ b/server/src/data/split/c12c37f0-7f0b-4704-915d-169b2e4d4053_axiomcontext.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2024-12-05T15:12:11Z", "hubId": "c12c37f0-7f0b-4704-915d-169b2e4d4053", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "13900c7ae8ca7ae3a67fc29d279003aae361a447", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/c1700b62-72fb-4613-9de1-c18b9232e852_gitlabreview.json b/server/src/data/split/c1700b62-72fb-4613-9de1-c18b9232e852_gitlabreview.json index c3d7ce2..b1d714a 100644 --- a/server/src/data/split/c1700b62-72fb-4613-9de1-c18b9232e852_gitlabreview.json +++ b/server/src/data/split/c1700b62-72fb-4613-9de1-c18b9232e852_gitlabreview.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2024-12-17T04:39:27Z", "hubId": "c1700b62-72fb-4613-9de1-c18b9232e852", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1b8da75bdb327b545f30222a0cc8e9ce25b5585a", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/c2137c29-feed-4a2f-ab94-18a769cf46b4_chronulusaiforecasting.json b/server/src/data/split/c2137c29-feed-4a2f-ab94-18a769cf46b4_chronulusaiforecasting.json index 9d84156..34a5f93 100644 --- a/server/src/data/split/c2137c29-feed-4a2f-ab94-18a769cf46b4_chronulusaiforecasting.json +++ b/server/src/data/split/c2137c29-feed-4a2f-ab94-18a769cf46b4_chronulusaiforecasting.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 55, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-23T16:29:07Z", "hubId": "c2137c29-feed-4a2f-ab94-18a769cf46b4", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "29114c185f0068f9d1bef16af3949e75dede00da", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c2488152-9109-481b-968f-42efe761a697_qgis.json b/server/src/data/split/c2488152-9109-481b-968f-42efe761a697_qgis.json index 22a5a17..b776483 100644 --- a/server/src/data/split/c2488152-9109-481b-968f-42efe761a697_qgis.json +++ b/server/src/data/split/c2488152-9109-481b-968f-42efe761a697_qgis.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 463, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-13T21:13:27Z", "hubId": "c2488152-9109-481b-968f-42efe761a697", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "jjsantos01", + "githubLatestCommit": "1de15a3aeddf3bd6be6bcf77b605af7c3da05f7b", + "githubForks": 59 } \ No newline at end of file diff --git a/server/src/data/split/c27d1365-57eb-42a6-9bf8-03d759407874_openapiclientgenerator.json b/server/src/data/split/c27d1365-57eb-42a6-9bf8-03d759407874_openapiclientgenerator.json index 896a4eb..8cc1664 100644 --- a/server/src/data/split/c27d1365-57eb-42a6-9bf8-03d759407874_openapiclientgenerator.json +++ b/server/src/data/split/c27d1365-57eb-42a6-9bf8-03d759407874_openapiclientgenerator.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-12T10:40:27Z", "hubId": "c27d1365-57eb-42a6-9bf8-03d759407874", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "40255d52da668c6fbc1efa30957d297387c35796", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c29682a2-e6ff-4eb9-a2b5-0f0ddc519eef_hanacloudmlbridge.json b/server/src/data/split/c29682a2-e6ff-4eb9-a2b5-0f0ddc519eef_hanacloudmlbridge.json index 66599a0..e8f6c8c 100644 --- a/server/src/data/split/c29682a2-e6ff-4eb9-a2b5-0f0ddc519eef_hanacloudmlbridge.json +++ b/server/src/data/split/c29682a2-e6ff-4eb9-a2b5-0f0ddc519eef_hanacloudmlbridge.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-08T06:45:41Z", "hubId": "c29682a2-e6ff-4eb9-a2b5-0f0ddc519eef", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "be31a9218bcd6eb680249c62ad1f6c8d29222f54", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/c2c07053-dbf4-403f-ae1e-643b9c6ad6a0_accessibilityscanner.json b/server/src/data/split/c2c07053-dbf4-403f-ae1e-643b9c6ad6a0_accessibilityscanner.json index 5aecff8..07adc45 100644 --- a/server/src/data/split/c2c07053-dbf4-403f-ae1e-643b9c6ad6a0_accessibilityscanner.json +++ b/server/src/data/split/c2c07053-dbf4-403f-ae1e-643b9c6ad6a0_accessibilityscanner.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-20T16:35:33Z", "hubId": "c2c07053-dbf4-403f-ae1e-643b9c6ad6a0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "951c23176354de59ca7733fd7a1c0e5e21698f84", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c2f4ff6a-380b-4513-ae31-f4c30cc79ccc_tftmatchanalyzer.json b/server/src/data/split/c2f4ff6a-380b-4513-ae31-f4c30cc79ccc_tftmatchanalyzer.json index d76b133..a24b85b 100644 --- a/server/src/data/split/c2f4ff6a-380b-4513-ae31-f4c30cc79ccc_tftmatchanalyzer.json +++ b/server/src/data/split/c2f4ff6a-380b-4513-ae31-f4c30cc79ccc_tftmatchanalyzer.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-31T05:47:57Z", "hubId": "c2f4ff6a-380b-4513-ae31-f4c30cc79ccc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "GeLi2001", + "githubLatestCommit": "71eef4d32b403b44330337502c6d7b3298cc0be3", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/c3279d7d-cbf6-4d8b-8527-478cc83a3022_tmf620productcatalogmanagement.json b/server/src/data/split/c3279d7d-cbf6-4d8b-8527-478cc83a3022_tmf620productcatalogmanagement.json index c9535da..1cb3493 100644 --- a/server/src/data/split/c3279d7d-cbf6-4d8b-8527-478cc83a3022_tmf620productcatalogmanagement.json +++ b/server/src/data/split/c3279d7d-cbf6-4d8b-8527-478cc83a3022_tmf620productcatalogmanagement.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-28T07:21:55Z", "hubId": "c3279d7d-cbf6-4d8b-8527-478cc83a3022", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8f8c286d8090455643af3d61f1118fb3df0f19eb", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/c367783e-233e-4356-83e8-ce44d35ffb54_openai.json b/server/src/data/split/c367783e-233e-4356-83e8-ce44d35ffb54_openai.json index 121d2ad..141c54b 100644 --- a/server/src/data/split/c367783e-233e-4356-83e8-ce44d35ffb54_openai.json +++ b/server/src/data/split/c367783e-233e-4356-83e8-ce44d35ffb54_openai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 55, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2024-11-28T03:48:15Z", "hubId": "c367783e-233e-4356-83e8-ce44d35ffb54", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "67e598884e6fe7f28fc43bec2db8e37f482953ee", + "githubForks": 10, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c3dae897-852f-4943-abc9-bfc3200898d1_logseq.json b/server/src/data/split/c3dae897-852f-4943-abc9-bfc3200898d1_logseq.json index df7c5ee..48410c9 100644 --- a/server/src/data/split/c3dae897-852f-4943-abc9-bfc3200898d1_logseq.json +++ b/server/src/data/split/c3dae897-852f-4943-abc9-bfc3200898d1_logseq.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 56, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-20T16:35:52Z", "hubId": "c3dae897-852f-4943-abc9-bfc3200898d1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0b31a3500e845da35cd7229b9be7d2de4e91be08", + "githubForks": 9 } \ No newline at end of file diff --git a/server/src/data/split/c3dfb99b-3419-482b-a449-0aa837c20547_webmcp.json b/server/src/data/split/c3dfb99b-3419-482b-a449-0aa837c20547_webmcp.json index 88b45aa..021e6c9 100644 --- a/server/src/data/split/c3dfb99b-3419-482b-a449-0aa837c20547_webmcp.json +++ b/server/src/data/split/c3dfb99b-3419-482b-a449-0aa837c20547_webmcp.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-22T19:59:15Z", "hubId": "c3dfb99b-3419-482b-a449-0aa837c20547", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1de0c8c35171bc19a96911b1cd5fedbdf9412011", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c3f01461-4cab-45a6-82c4-203aa1fed204_codeassistant.json b/server/src/data/split/c3f01461-4cab-45a6-82c4-203aa1fed204_codeassistant.json index 6f6338b..480c965 100644 --- a/server/src/data/split/c3f01461-4cab-45a6-82c4-203aa1fed204_codeassistant.json +++ b/server/src/data/split/c3f01461-4cab-45a6-82c4-203aa1fed204_codeassistant.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 39, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-17T11:24:07Z", "hubId": "c3f01461-4cab-45a6-82c4-203aa1fed204", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "stippi", + "githubLatestCommit": "76e3f467b6a7b31ad0507f19c388cafa5c16639a", + "githubForks": 6, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/c41b5549-c464-43c7-bf06-c20a6f930aab_fastnaiunifiedapimcpserver.json b/server/src/data/split/c41b5549-c464-43c7-bf06-c20a6f930aab_fastnaiunifiedapimcpserver.json index 4bc3d29..c6abe2e 100644 --- a/server/src/data/split/c41b5549-c464-43c7-bf06-c20a6f930aab_fastnaiunifiedapimcpserver.json +++ b/server/src/data/split/c41b5549-c464-43c7-bf06-c20a6f930aab_fastnaiunifiedapimcpserver.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-22T18:40:56Z", "hubId": "c41b5549-c464-43c7-bf06-c20a6f930aab", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "fastnai", + "githubLatestCommit": "33428450435db937120d3f9f2988fb8eecd83c8a", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c43e38c7-23ab-4e1a-be58-7acf1a6659b5_tallydaogovernance.json b/server/src/data/split/c43e38c7-23ab-4e1a-be58-7acf1a6659b5_tallydaogovernance.json index 9bbeebb..894e0db 100644 --- a/server/src/data/split/c43e38c7-23ab-4e1a-be58-7acf1a6659b5_tallydaogovernance.json +++ b/server/src/data/split/c43e38c7-23ab-4e1a-be58-7acf1a6659b5_tallydaogovernance.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-06T22:33:19Z", "hubId": "c43e38c7-23ab-4e1a-be58-7acf1a6659b5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "db750cc0605a4578655c9364b8592f3db1f05959", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c45ac091-c508-44f7-8ef5-2c6e1845643f_bartsanfranciscotransit.json b/server/src/data/split/c45ac091-c508-44f7-8ef5-2c6e1845643f_bartsanfranciscotransit.json index f29fcbb..688d25d 100644 --- a/server/src/data/split/c45ac091-c508-44f7-8ef5-2c6e1845643f_bartsanfranciscotransit.json +++ b/server/src/data/split/c45ac091-c508-44f7-8ef5-2c6e1845643f_bartsanfranciscotransit.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-11T03:34:05Z", "hubId": "c45ac091-c508-44f7-8ef5-2c6e1845643f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d8a7fb9c5460bea17b6de06294e96247e4c4403c", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/c46b7892-7b58-44d7-8913-700a49535dd9_aksharechinesefinancialdata.json b/server/src/data/split/c46b7892-7b58-44d7-8913-700a49535dd9_aksharechinesefinancialdata.json index b8dd3ea..3b0c08a 100644 --- a/server/src/data/split/c46b7892-7b58-44d7-8913-700a49535dd9_aksharechinesefinancialdata.json +++ b/server/src/data/split/c46b7892-7b58-44d7-8913-700a49535dd9_aksharechinesefinancialdata.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-04T09:59:04Z", "hubId": "c46b7892-7b58-44d7-8913-700a49535dd9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "90aefc314d2aec0e916515d222e82a508064d39c", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/c4a1d9e8-084f-4442-9e47-d992be4281ad_openai.json b/server/src/data/split/c4a1d9e8-084f-4442-9e47-d992be4281ad_openai.json index 6d4900f..6b960d8 100644 --- a/server/src/data/split/c4a1d9e8-084f-4442-9e47-d992be4281ad_openai.json +++ b/server/src/data/split/c4a1d9e8-084f-4442-9e47-d992be4281ad_openai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-20T13:43:49Z", "hubId": "c4a1d9e8-084f-4442-9e47-d992be4281ad", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "eced8d51750fda45c442e14ea0310f64c974da8e", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c4a7a55f-c0cb-4740-a413-44b8f10d66f2_airtable.json b/server/src/data/split/c4a7a55f-c0cb-4740-a413-44b8f10d66f2_airtable.json index 466a151..0f06528 100644 --- a/server/src/data/split/c4a7a55f-c0cb-4740-a413-44b8f10d66f2_airtable.json +++ b/server/src/data/split/c4a7a55f-c0cb-4740-a413-44b8f10d66f2_airtable.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 61, + "githubStars": 127, "downloadCount": 616, "createdAt": "2025-02-19T02:22:31.761899Z", - "updatedAt": "2025-02-19T02:22:31.761899Z", + "updatedAt": "2025-04-11T16:09:32Z", "hubId": "c4a7a55f-c0cb-4740-a413-44b8f10d66f2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b9773599efadcc634ee997a24ea92ce496901470", + "githubForks": 36, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c4b5cb62-925b-4920-a79b-ec65b1c26d0d_readwise.json b/server/src/data/split/c4b5cb62-925b-4920-a79b-ec65b1c26d0d_readwise.json index cec7cad..4281f31 100644 --- a/server/src/data/split/c4b5cb62-925b-4920-a79b-ec65b1c26d0d_readwise.json +++ b/server/src/data/split/c4b5cb62-925b-4920-a79b-ec65b1c26d0d_readwise.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-22T00:58:23Z", "hubId": "c4b5cb62-925b-4920-a79b-ec65b1c26d0d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "aa1090d1094a1797e18c612ce32324291741ed10", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c4c0ec82-2a55-4727-81ff-7e02ff365904_vikunja.json b/server/src/data/split/c4c0ec82-2a55-4727-81ff-7e02ff365904_vikunja.json index d7817cb..0f85607 100644 --- a/server/src/data/split/c4c0ec82-2a55-4727-81ff-7e02ff365904_vikunja.json +++ b/server/src/data/split/c4c0ec82-2a55-4727-81ff-7e02ff365904_vikunja.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-21T05:17:50Z", "hubId": "c4c0ec82-2a55-4727-81ff-7e02ff365904", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e3b6490af53cf3532331847f47698ac3d20c9595", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/c4e902d8-b4a0-4316-9204-f9513c01b8f8_macosclipboard.json b/server/src/data/split/c4e902d8-b4a0-4316-9204-f9513c01b8f8_macosclipboard.json index 1844d68..cb16660 100644 --- a/server/src/data/split/c4e902d8-b4a0-4316-9204-f9513c01b8f8_macosclipboard.json +++ b/server/src/data/split/c4e902d8-b4a0-4316-9204-f9513c01b8f8_macosclipboard.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-08T11:21:27Z", "hubId": "c4e902d8-b4a0-4316-9204-f9513c01b8f8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d8ab667bd9a680a7152a78f10d8a9460133588a3", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c50efa29-4322-4cd5-828b-a175b4a808c7_pdfmanipulation.json b/server/src/data/split/c50efa29-4322-4cd5-828b-a175b4a808c7_pdfmanipulation.json index 4903f82..cadfd6a 100644 --- a/server/src/data/split/c50efa29-4322-4cd5-828b-a175b4a808c7_pdfmanipulation.json +++ b/server/src/data/split/c50efa29-4322-4cd5-828b-a175b4a808c7_pdfmanipulation.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 38, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2024-12-22T21:17:48Z", "hubId": "c50efa29-4322-4cd5-828b-a175b4a808c7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "388ba1fcb8cb30b9c938e681cbb5945e74b22596", + "githubForks": 5, + "licenseType": "Unlicense" } \ No newline at end of file diff --git a/server/src/data/split/c574f6f5-ed86-4cd9-bfe2-b5af60d075f8_testrunner.json b/server/src/data/split/c574f6f5-ed86-4cd9-bfe2-b5af60d075f8_testrunner.json index 0107d09..6bb3cd0 100644 --- a/server/src/data/split/c574f6f5-ed86-4cd9-bfe2-b5af60d075f8_testrunner.json +++ b/server/src/data/split/c574f6f5-ed86-4cd9-bfe2-b5af60d075f8_testrunner.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-30T04:47:55Z", "hubId": "c574f6f5-ed86-4cd9-bfe2-b5af60d075f8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1240ea244ddba30f421ae98868e8f4f1ff38dce5", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c5794915-bec1-4398-b5d2-a5588dfb8f72_starwindui.json b/server/src/data/split/c5794915-bec1-4398-b5d2-a5588dfb8f72_starwindui.json index c13cf8c..0e40ee9 100644 --- a/server/src/data/split/c5794915-bec1-4398-b5d2-a5588dfb8f72_starwindui.json +++ b/server/src/data/split/c5794915-bec1-4398-b5d2-a5588dfb8f72_starwindui.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-26T10:59:11Z", "hubId": "c5794915-bec1-4398-b5d2-a5588dfb8f72", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "starwind-ui", + "githubLatestCommit": "aa195730f1de4b54265e17f132e1cf5bb0f71b5e", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c59347ae-b49e-4dd6-89b8-d091ca1758c0_servermanservermanager.json b/server/src/data/split/c59347ae-b49e-4dd6-89b8-d091ca1758c0_servermanservermanager.json index 002bde7..27301ae 100644 --- a/server/src/data/split/c59347ae-b49e-4dd6-89b8-d091ca1758c0_servermanservermanager.json +++ b/server/src/data/split/c59347ae-b49e-4dd6-89b8-d091ca1758c0_servermanservermanager.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-02-24T00:39:09Z", "hubId": "c59347ae-b49e-4dd6-89b8-d091ca1758c0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cadff57a7266675fb4a89100089b6a019f673895", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c5ce2189-5688-451b-a7d9-87c860e423a3_webflow.json b/server/src/data/split/c5ce2189-5688-451b-a7d9-87c860e423a3_webflow.json index e837521..d4dbfe5 100644 --- a/server/src/data/split/c5ce2189-5688-451b-a7d9-87c860e423a3_webflow.json +++ b/server/src/data/split/c5ce2189-5688-451b-a7d9-87c860e423a3_webflow.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-21T19:59:06Z", "hubId": "c5ce2189-5688-451b-a7d9-87c860e423a3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1f91fb97c2a277461a24ed58b68a15c39b54a039", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c5ef65cf-ef22-40bd-9f53-c2f0c096b2fa_dataexploration.json b/server/src/data/split/c5ef65cf-ef22-40bd-9f53-c2f0c096b2fa_dataexploration.json index 7678b19..88ecb25 100644 --- a/server/src/data/split/c5ef65cf-ef22-40bd-9f53-c2f0c096b2fa_dataexploration.json +++ b/server/src/data/split/c5ef65cf-ef22-40bd-9f53-c2f0c096b2fa_dataexploration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 305, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-22T17:26:00Z", "hubId": "c5ef65cf-ef22-40bd-9f53-c2f0c096b2fa", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0cd67660c2591f05fe8dfe5bf93c9d5b66c5b95d", + "githubForks": 29, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c604767e-3f0f-4066-864e-267fdbfbaf5a_googlesearch.json b/server/src/data/split/c604767e-3f0f-4066-864e-267fdbfbaf5a_googlesearch.json index 430e257..be56d24 100644 --- a/server/src/data/split/c604767e-3f0f-4066-864e-267fdbfbaf5a_googlesearch.json +++ b/server/src/data/split/c604767e-3f0f-4066-864e-267fdbfbaf5a_googlesearch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-06T21:32:27Z", "hubId": "c604767e-3f0f-4066-864e-267fdbfbaf5a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e9f0707b81e4b9df78138d981b829d76b6030044", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/c68fecff-7d17-4ef0-a672-bb31534f179c_docling.json b/server/src/data/split/c68fecff-7d17-4ef0-a672-bb31534f179c_docling.json index c739581..5ae5e67 100644 --- a/server/src/data/split/c68fecff-7d17-4ef0-a672-bb31534f179c_docling.json +++ b/server/src/data/split/c68fecff-7d17-4ef0-a672-bb31534f179c_docling.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-05T11:55:47Z", "hubId": "c68fecff-7d17-4ef0-a672-bb31534f179c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6f37069f2009d6a272bb10646cd6f6606312e0e8", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c69a0d7a-afc8-4d42-a15f-964eb35557b6_unichatts.json b/server/src/data/split/c69a0d7a-afc8-4d42-a15f-964eb35557b6_unichatts.json index eb3f8fe..ee865d3 100644 --- a/server/src/data/split/c69a0d7a-afc8-4d42-a15f-964eb35557b6_unichatts.json +++ b/server/src/data/split/c69a0d7a-afc8-4d42-a15f-964eb35557b6_unichatts.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-02-08T08:42:18Z", "hubId": "c69a0d7a-afc8-4d42-a15f-964eb35557b6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b8d3fbbe444a506eb80e5a5d88fa5320d71b73d8", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c6d40759-1bde-4765-bf87-d86ab5c002c5_texteditor.json b/server/src/data/split/c6d40759-1bde-4765-bf87-d86ab5c002c5_texteditor.json index e1e3e3e..578af05 100644 --- a/server/src/data/split/c6d40759-1bde-4765-bf87-d86ab5c002c5_texteditor.json +++ b/server/src/data/split/c6d40759-1bde-4765-bf87-d86ab5c002c5_texteditor.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 89, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-19T07:18:10Z", "hubId": "c6d40759-1bde-4765-bf87-d86ab5c002c5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "babc3258b0b45fcdb2ae048839bd1a7b746dcc1f", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c72f32db-402f-43db-8186-68da837a79f3_alphavantage.json b/server/src/data/split/c72f32db-402f-43db-8186-68da837a79f3_alphavantage.json index a366235..096d7c7 100644 --- a/server/src/data/split/c72f32db-402f-43db-8186-68da837a79f3_alphavantage.json +++ b/server/src/data/split/c72f32db-402f-43db-8186-68da837a79f3_alphavantage.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-01-27T21:34:32Z", "hubId": "c72f32db-402f-43db-8186-68da837a79f3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "615d86917aff12e9d58c1b3699848a354a0b140e", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/c7325be6-b623-478c-b6a8-d7f6df1ab29a_airagit.json b/server/src/data/split/c7325be6-b623-478c-b6a8-d7f6df1ab29a_airagit.json index 5fe2f31..379ad95 100644 --- a/server/src/data/split/c7325be6-b623-478c-b6a8-d7f6df1ab29a_airagit.json +++ b/server/src/data/split/c7325be6-b623-478c-b6a8-d7f6df1ab29a_airagit.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2024-12-22T14:18:14Z", "hubId": "c7325be6-b623-478c-b6a8-d7f6df1ab29a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e0fcf68c53c467fbe7a06f0761b1d8ab47dcbcf7", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c77af52b-b22d-4b3a-8d99-15b7c441c9bf_supabasenotes.json b/server/src/data/split/c77af52b-b22d-4b3a-8d99-15b7c441c9bf_supabasenotes.json index cd9b6d2..1023f34 100644 --- a/server/src/data/split/c77af52b-b22d-4b3a-8d99-15b7c441c9bf_supabasenotes.json +++ b/server/src/data/split/c77af52b-b22d-4b3a-8d99-15b7c441c9bf_supabasenotes.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-31T02:21:41Z", "hubId": "c77af52b-b22d-4b3a-8d99-15b7c441c9bf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d0b13700f5dcbbb57e4d2e7d51689b1ea012f7c6", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/c7999590-024e-47fa-9996-3f59f1adac8b_timeandtimezone.json b/server/src/data/split/c7999590-024e-47fa-9996-3f59f1adac8b_timeandtimezone.json index 0099d2e..1e23ce9 100644 --- a/server/src/data/split/c7999590-024e-47fa-9996-3f59f1adac8b_timeandtimezone.json +++ b/server/src/data/split/c7999590-024e-47fa-9996-3f59f1adac8b_timeandtimezone.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-05T10:53:58Z", "hubId": "c7999590-024e-47fa-9996-3f59f1adac8b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "67a60bdb8274ddc1b963a459f8f7958f44f25d8c", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/c7b152ef-201d-410f-849b-095836d1637c_unityintegrationadvanced.json b/server/src/data/split/c7b152ef-201d-410f-849b-095836d1637c_unityintegrationadvanced.json index af0dd9d..4030f92 100644 --- a/server/src/data/split/c7b152ef-201d-410f-849b-095836d1637c_unityintegrationadvanced.json +++ b/server/src/data/split/c7b152ef-201d-410f-849b-095836d1637c_unityintegrationadvanced.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 49, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-15T07:20:08Z", "hubId": "c7b152ef-201d-410f-849b-095836d1637c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "quazaai", + "githubLatestCommit": "d1515b326e2fc14b39de5a08534159ba29963c7d", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c7ee0bcd-f0f8-47cc-a9ea-b7a673cb7df8_cosense.json b/server/src/data/split/c7ee0bcd-f0f8-47cc-a9ea-b7a673cb7df8_cosense.json index 941b55a..da82452 100644 --- a/server/src/data/split/c7ee0bcd-f0f8-47cc-a9ea-b7a673cb7df8_cosense.json +++ b/server/src/data/split/c7ee0bcd-f0f8-47cc-a9ea-b7a673cb7df8_cosense.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-11T23:26:36Z", "hubId": "c7ee0bcd-f0f8-47cc-a9ea-b7a673cb7df8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7b869bda3895e8641401ba787491956efa147b72", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/c7f212cc-0585-4146-adc1-d16ed217788a_tavily.json b/server/src/data/split/c7f212cc-0585-4146-adc1-d16ed217788a_tavily.json index f4c864c..d9a3a23 100644 --- a/server/src/data/split/c7f212cc-0585-4146-adc1-d16ed217788a_tavily.json +++ b/server/src/data/split/c7f212cc-0585-4146-adc1-d16ed217788a_tavily.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-02-24T14:19:31Z", "hubId": "c7f212cc-0585-4146-adc1-d16ed217788a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b17de990c39913a8a9d984c97b23bcbc3d00b780", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c840c2b4-5621-4350-a042-9113eca28fba_googlemapstravelplanner.json b/server/src/data/split/c840c2b4-5621-4350-a042-9113eca28fba_googlemapstravelplanner.json index 87d1b93..87ac6f6 100644 --- a/server/src/data/split/c840c2b4-5621-4350-a042-9113eca28fba_googlemapstravelplanner.json +++ b/server/src/data/split/c840c2b4-5621-4350-a042-9113eca28fba_googlemapstravelplanner.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 39, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-12T10:55:43Z", "hubId": "c840c2b4-5621-4350-a042-9113eca28fba", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cfec0e4e8233ca99fa401e987d7d8b34c42dd477", + "githubForks": 10, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c892e894-7702-4f9f-943a-48e10d92a0ab_kicadmcp.json b/server/src/data/split/c892e894-7702-4f9f-943a-48e10d92a0ab_kicadmcp.json index c1c289b..8c8eed7 100644 --- a/server/src/data/split/c892e894-7702-4f9f-943a-48e10d92a0ab_kicadmcp.json +++ b/server/src/data/split/c892e894-7702-4f9f-943a-48e10d92a0ab_kicadmcp.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 75, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-24T20:07:36Z", "hubId": "c892e894-7702-4f9f-943a-48e10d92a0ab", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "lamaalrajih", + "githubLatestCommit": "e5c87df0889875592ccdc14e7dba0ae7f91fba75", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/c89fdc95-2303-474b-b0ac-a2d455e538e4_excelmcpserver.json b/server/src/data/split/c89fdc95-2303-474b-b0ac-a2d455e538e4_excelmcpserver.json index 99f0061..b4f5e3d 100644 --- a/server/src/data/split/c89fdc95-2303-474b-b0ac-a2d455e538e4_excelmcpserver.json +++ b/server/src/data/split/c89fdc95-2303-474b-b0ac-a2d455e538e4_excelmcpserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 396, "downloadCount": 0, "createdAt": "2025-03-31T02:56:17.196Z", - "updatedAt": "2025-03-31T02:56:17.196Z", + "updatedAt": "2025-04-09T08:07:04Z", "hubId": "c89fdc95-2303-474b-b0ac-a2d455e538e4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "addd5e2facf753a5c38297a2a32b46e7af9f9b75", + "githubForks": 52, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c8bee655-d836-458d-a24d-c24205331ab8_dnstwist.json b/server/src/data/split/c8bee655-d836-458d-a24d-c24205331ab8_dnstwist.json index 7f8f5f8..d88b697 100644 --- a/server/src/data/split/c8bee655-d836-458d-a24d-c24205331ab8_dnstwist.json +++ b/server/src/data/split/c8bee655-d836-458d-a24d-c24205331ab8_dnstwist.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-03-03T06:57:46Z", "hubId": "c8bee655-d836-458d-a24d-c24205331ab8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "af62d09328f762a3581cd354997299ed0a758c11", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c8f9f8f7-2dcf-4ca1-a0f9-8c22d3ed64e3_shadertoy.json b/server/src/data/split/c8f9f8f7-2dcf-4ca1-a0f9-8c22d3ed64e3_shadertoy.json index 6711db7..e13e7d8 100644 --- a/server/src/data/split/c8f9f8f7-2dcf-4ca1-a0f9-8c22d3ed64e3_shadertoy.json +++ b/server/src/data/split/c8f9f8f7-2dcf-4ca1-a0f9-8c22d3ed64e3_shadertoy.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-04T09:48:03Z", "hubId": "c8f9f8f7-2dcf-4ca1-a0f9-8c22d3ed64e3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "wilsonchenghy", + "githubLatestCommit": "7509ab8ce67a8f2cc477ed547ba901784dac4aaa", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/c922dfc5-5412-4b67-b68c-0243a1d2d31a_fetch.json b/server/src/data/split/c922dfc5-5412-4b67-b68c-0243a1d2d31a_fetch.json index c7f6c80..45f828d 100644 --- a/server/src/data/split/c922dfc5-5412-4b67-b68c-0243a1d2d31a_fetch.json +++ b/server/src/data/split/c922dfc5-5412-4b67-b68c-0243a1d2d31a_fetch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 168, + "githubStars": 309, "downloadCount": 10772, "createdAt": "2025-02-19T00:55:59.104097Z", - "updatedAt": "2025-02-19T00:55:59.104097Z", + "updatedAt": "2025-01-18T19:22:12Z", "hubId": "c922dfc5-5412-4b67-b68c-0243a1d2d31a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3fdeb8a01faaaa82480d0135abd32fb864a33e3a", + "githubForks": 45 } \ No newline at end of file diff --git a/server/src/data/split/c94ac814-9232-4c43-be38-0434996e3785_imessage.json b/server/src/data/split/c94ac814-9232-4c43-be38-0434996e3785_imessage.json index 97e187d..9f685a7 100644 --- a/server/src/data/split/c94ac814-9232-4c43-be38-0434996e3785_imessage.json +++ b/server/src/data/split/c94ac814-9232-4c43-be38-0434996e3785_imessage.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-14T07:24:23Z", "hubId": "c94ac814-9232-4c43-be38-0434996e3785", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "848d0d87589266fe7d97a0b688155f1b224ec073", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c9660cf9-2460-4fb0-8af0-21a71de4057d_sentry.json b/server/src/data/split/c9660cf9-2460-4fb0-8af0-21a71de4057d_sentry.json index d812aac..1ed4eb9 100644 --- a/server/src/data/split/c9660cf9-2460-4fb0-8af0-21a71de4057d_sentry.json +++ b/server/src/data/split/c9660cf9-2460-4fb0-8af0-21a71de4057d_sentry.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42047, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "c9660cf9-2460-4fb0-8af0-21a71de4057d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4616, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c98b9c30-c225-4bcc-984a-064d6c099ff5_pythoncodeanalyzer.json b/server/src/data/split/c98b9c30-c225-4bcc-984a-064d6c099ff5_pythoncodeanalyzer.json index 23aa963..d863ee6 100644 --- a/server/src/data/split/c98b9c30-c225-4bcc-984a-064d6c099ff5_pythoncodeanalyzer.json +++ b/server/src/data/split/c98b9c30-c225-4bcc-984a-064d6c099ff5_pythoncodeanalyzer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2024-12-27T04:36:31Z", "hubId": "c98b9c30-c225-4bcc-984a-064d6c099ff5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cd06cb53f6e27ce08bcb5032369fa1891993a597", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/c9dd9d01-1574-46ad-86a5-526728a308dc_websitetomarkdownconverter.json b/server/src/data/split/c9dd9d01-1574-46ad-86a5-526728a308dc_websitetomarkdownconverter.json index e12f5db..c51fcec 100644 --- a/server/src/data/split/c9dd9d01-1574-46ad-86a5-526728a308dc_websitetomarkdownconverter.json +++ b/server/src/data/split/c9dd9d01-1574-46ad-86a5-526728a308dc_websitetomarkdownconverter.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-10T03:58:36Z", "hubId": "c9dd9d01-1574-46ad-86a5-526728a308dc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bce3c1c4d1123c948295f33382e4f9b843584843", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ca0420ea-7328-4bbb-9481-37942c712b30_nwsweather.json b/server/src/data/split/ca0420ea-7328-4bbb-9481-37942c712b30_nwsweather.json index 35ddbb5..447b5ef 100644 --- a/server/src/data/split/ca0420ea-7328-4bbb-9481-37942c712b30_nwsweather.json +++ b/server/src/data/split/ca0420ea-7328-4bbb-9481-37942c712b30_nwsweather.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-07T21:00:28Z", "hubId": "ca0420ea-7328-4bbb-9481-37942c712b30", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "80fbd63512844fd13e205663dd33262e99f93ae6", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ca739bfd-b3b1-491a-bb6a-cee28f68bf50_codingfilemanagement.json b/server/src/data/split/ca739bfd-b3b1-491a-bb6a-cee28f68bf50_codingfilemanagement.json index d9cf638..8aafc22 100644 --- a/server/src/data/split/ca739bfd-b3b1-491a-bb6a-cee28f68bf50_codingfilemanagement.json +++ b/server/src/data/split/ca739bfd-b3b1-491a-bb6a-cee28f68bf50_codingfilemanagement.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2024-12-21T10:40:29Z", "hubId": "ca739bfd-b3b1-491a-bb6a-cee28f68bf50", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d7c73fda1bc3644cfe5286a40fbc4cf5bfca6b43", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cab9ba44-14ee-4a77-a656-d677dfaabdb5_gyazo.json b/server/src/data/split/cab9ba44-14ee-4a77-a656-d677dfaabdb5_gyazo.json index 6329cdc..325669a 100644 --- a/server/src/data/split/cab9ba44-14ee-4a77-a656-d677dfaabdb5_gyazo.json +++ b/server/src/data/split/cab9ba44-14ee-4a77-a656-d677dfaabdb5_gyazo.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-23T02:44:08Z", "hubId": "cab9ba44-14ee-4a77-a656-d677dfaabdb5", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "nota", + "githubLatestCommit": "03408e141569e1dbf72dd922e3bb51ef4ca0cb4e", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cacd90eb-0024-4c1a-b86c-1e648428c01b_discord.json b/server/src/data/split/cacd90eb-0024-4c1a-b86c-1e648428c01b_discord.json index cecb305..58648d3 100644 --- a/server/src/data/split/cacd90eb-0024-4c1a-b86c-1e648428c01b_discord.json +++ b/server/src/data/split/cacd90eb-0024-4c1a-b86c-1e648428c01b_discord.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T19:05:08Z", "hubId": "cacd90eb-0024-4c1a-b86c-1e648428c01b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "SaseQ", + "githubLatestCommit": "3fd74200e3465b48936d8f878cd582c312a61139", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/caf80070-b999-49f1-8492-622385a66b7a_iacrcryptologyeprintarchive.json b/server/src/data/split/caf80070-b999-49f1-8492-622385a66b7a_iacrcryptologyeprintarchive.json index ada19fe..2d30d9d 100644 --- a/server/src/data/split/caf80070-b999-49f1-8492-622385a66b7a_iacrcryptologyeprintarchive.json +++ b/server/src/data/split/caf80070-b999-49f1-8492-622385a66b7a_iacrcryptologyeprintarchive.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-02T01:58:48Z", "hubId": "caf80070-b999-49f1-8492-622385a66b7a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f335c619156109c3c1a5c47e369db9d6fbb901b6", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cafac39d-eff3-403e-a529-4c2091eff3ae_mcptoolboxfordatabases.json b/server/src/data/split/cafac39d-eff3-403e-a529-4c2091eff3ae_mcptoolboxfordatabases.json index 798a64b..a3f5dfc 100644 --- a/server/src/data/split/cafac39d-eff3-403e-a529-4c2091eff3ae_mcptoolboxfordatabases.json +++ b/server/src/data/split/cafac39d-eff3-403e-a529-4c2091eff3ae_mcptoolboxfordatabases.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 776, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-29T04:09:07Z", "hubId": "cafac39d-eff3-403e-a529-4c2091eff3ae", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "googleapis", + "githubLatestCommit": "b6cd99e859c81ed27b6e3579c6b42a43a02df49c", + "githubForks": 87, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/cb10aefc-4b65-44c9-9ecd-a33be3d142ea_sentry.json b/server/src/data/split/cb10aefc-4b65-44c9-9ecd-a33be3d142ea_sentry.json index 59ecc07..f8e9d6f 100644 --- a/server/src/data/split/cb10aefc-4b65-44c9-9ecd-a33be3d142ea_sentry.json +++ b/server/src/data/split/cb10aefc-4b65-44c9-9ecd-a33be3d142ea_sentry.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-18T23:39:33Z", "hubId": "cb10aefc-4b65-44c9-9ecd-a33be3d142ea", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1858b3947a54db5331dd5dd8900f178487179f48", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/cb5bfeec-0606-4be7-a599-99b27d1c9c80_mysql.json b/server/src/data/split/cb5bfeec-0606-4be7-a599-99b27d1c9c80_mysql.json index 8954de3..dd78254 100644 --- a/server/src/data/split/cb5bfeec-0606-4be7-a599-99b27d1c9c80_mysql.json +++ b/server/src/data/split/cb5bfeec-0606-4be7-a599-99b27d1c9c80_mysql.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 418, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-19T10:18:49Z", "hubId": "cb5bfeec-0606-4be7-a599-99b27d1c9c80", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "designcomputer", + "githubLatestCommit": "c647e403b5b7408646143ebffa0b4c6165a7e849", + "githubForks": 108, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cb8e04e6-0dfe-4146-80ac-0b91f4ac794b_novu.json b/server/src/data/split/cb8e04e6-0dfe-4146-80ac-0b91f4ac794b_novu.json index 37f1d68..881ca7f 100644 --- a/server/src/data/split/cb8e04e6-0dfe-4146-80ac-0b91f4ac794b_novu.json +++ b/server/src/data/split/cb8e04e6-0dfe-4146-80ac-0b91f4ac794b_novu.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-11T16:16:40Z", "hubId": "cb8e04e6-0dfe-4146-80ac-0b91f4ac794b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4c5280a0aefa40099c522f70aa8f83ba6ca0b85b", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/cba0f7ab-1222-4072-974c-31800110aebc_jinareader.json b/server/src/data/split/cba0f7ab-1222-4072-974c-31800110aebc_jinareader.json index 8f882d8..a1a7a73 100644 --- a/server/src/data/split/cba0f7ab-1222-4072-974c-31800110aebc_jinareader.json +++ b/server/src/data/split/cba0f7ab-1222-4072-974c-31800110aebc_jinareader.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 41, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-11T08:10:47Z", "hubId": "cba0f7ab-1222-4072-974c-31800110aebc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1301242884f92c5efe35c6b622f5c21c200fa84f", + "githubForks": 11 } \ No newline at end of file diff --git a/server/src/data/split/cba7c3c1-0b93-4de7-8ea9-c530f6a3bdae_hotnewschinesesocial.json b/server/src/data/split/cba7c3c1-0b93-4de7-8ea9-c530f6a3bdae_hotnewschinesesocial.json index bf7e335..11497be 100644 --- a/server/src/data/split/cba7c3c1-0b93-4de7-8ea9-c530f6a3bdae_hotnewschinesesocial.json +++ b/server/src/data/split/cba7c3c1-0b93-4de7-8ea9-c530f6a3bdae_hotnewschinesesocial.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 92, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2024-12-22T08:04:18Z", "hubId": "cba7c3c1-0b93-4de7-8ea9-c530f6a3bdae", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "05189ad087cb93fb37bb2829c754830d03816c41", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/cbb8a921-f89a-4e7d-b1d5-920e95b3f74d_filemodifier.json b/server/src/data/split/cbb8a921-f89a-4e7d-b1d5-920e95b3f74d_filemodifier.json index 6988dd8..ab97135 100644 --- a/server/src/data/split/cbb8a921-f89a-4e7d-b1d5-920e95b3f74d_filemodifier.json +++ b/server/src/data/split/cbb8a921-f89a-4e7d-b1d5-920e95b3f74d_filemodifier.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-03T11:25:32Z", "hubId": "cbb8a921-f89a-4e7d-b1d5-920e95b3f74d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "40037741549ec72597d674e5e2afeaee949e37f0", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/cbbe88e8-291d-4593-9576-4ea1e423ed70_gmail.json b/server/src/data/split/cbbe88e8-291d-4593-9576-4ea1e423ed70_gmail.json index 6b51c76..57ab1c8 100644 --- a/server/src/data/split/cbbe88e8-291d-4593-9576-4ea1e423ed70_gmail.json +++ b/server/src/data/split/cbbe88e8-291d-4593-9576-4ea1e423ed70_gmail.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 223, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-16T00:27:19Z", "hubId": "cbbe88e8-291d-4593-9576-4ea1e423ed70", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dc7d680b7fe6e6143ec102024d1c5175346d1ca2", + "githubForks": 54, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cbbf4643-775b-49bd-b420-dfc2d7a0cee3_jinaai.json b/server/src/data/split/cbbf4643-775b-49bd-b420-dfc2d7a0cee3_jinaai.json index 5a6129c..4cd2736 100644 --- a/server/src/data/split/cbbf4643-775b-49bd-b420-dfc2d7a0cee3_jinaai.json +++ b/server/src/data/split/cbbf4643-775b-49bd-b420-dfc2d7a0cee3_jinaai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-01-29T05:24:38Z", "hubId": "cbbf4643-775b-49bd-b420-dfc2d7a0cee3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a067aa20eb3b7b8e2f29c256507fd13bb0ee0c0e", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cbc2e4a6-4225-4714-874d-16e330d00a2c_linear.json b/server/src/data/split/cbc2e4a6-4225-4714-874d-16e330d00a2c_linear.json index 808dae1..a792cc3 100644 --- a/server/src/data/split/cbc2e4a6-4225-4714-874d-16e330d00a2c_linear.json +++ b/server/src/data/split/cbc2e4a6-4225-4714-874d-16e330d00a2c_linear.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 2, + "githubStars": 83, "downloadCount": 504, "createdAt": "2025-02-18T06:10:46.800194Z", - "updatedAt": "2025-02-18T06:10:46.800194Z", + "updatedAt": "2025-04-28T00:21:38Z", "hubId": "cbc2e4a6-4225-4714-874d-16e330d00a2c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "82330ca4a597fad447a56d111974d77326447ca7", + "githubForks": 26 } \ No newline at end of file diff --git a/server/src/data/split/cbdf92ac-9c31-4255-a480-f59519bbcdff_terminalcontroller.json b/server/src/data/split/cbdf92ac-9c31-4255-a480-f59519bbcdff_terminalcontroller.json index 000d4d6..618ded3 100644 --- a/server/src/data/split/cbdf92ac-9c31-4255-a480-f59519bbcdff_terminalcontroller.json +++ b/server/src/data/split/cbdf92ac-9c31-4255-a480-f59519bbcdff_terminalcontroller.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 33, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-15T16:45:42Z", "hubId": "cbdf92ac-9c31-4255-a480-f59519bbcdff", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b5c085ba9800f936ece7ee0d287b1486e9465888", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cbeabb3d-031d-40b1-afef-0b86c24c8b5c_githubprojectmanager.json b/server/src/data/split/cbeabb3d-031d-40b1-afef-0b86c24c8b5c_githubprojectmanager.json index b006515..4355d5a 100644 --- a/server/src/data/split/cbeabb3d-031d-40b1-afef-0b86c24c8b5c_githubprojectmanager.json +++ b/server/src/data/split/cbeabb3d-031d-40b1-afef-0b86c24c8b5c_githubprojectmanager.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-20T17:02:07Z", "hubId": "cbeabb3d-031d-40b1-afef-0b86c24c8b5c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ab63c6453ee73fb0a79cb2d23f44a7f7827f5a2e", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cc0a9578-01da-40ae-893a-545da95e827f_gibber.json b/server/src/data/split/cc0a9578-01da-40ae-893a-545da95e827f_gibber.json index 0feccc2..f3ad321 100644 --- a/server/src/data/split/cc0a9578-01da-40ae-893a-545da95e827f_gibber.json +++ b/server/src/data/split/cc0a9578-01da-40ae-893a-545da95e827f_gibber.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 175, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-03T13:59:24Z", "hubId": "cc0a9578-01da-40ae-893a-545da95e827f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0cd69424737dd3b0515bdddbb95a124c25ea0b8e", + "githubForks": 19 } \ No newline at end of file diff --git a/server/src/data/split/cc2b6795-17fc-4a0f-82a0-1ce7edcb98d6_vectorize.json b/server/src/data/split/cc2b6795-17fc-4a0f-82a0-1ce7edcb98d6_vectorize.json index ce90bde..6a5a788 100644 --- a/server/src/data/split/cc2b6795-17fc-4a0f-82a0-1ce7edcb98d6_vectorize.json +++ b/server/src/data/split/cc2b6795-17fc-4a0f-82a0-1ce7edcb98d6_vectorize.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 49, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-07T08:34:34Z", "hubId": "cc2b6795-17fc-4a0f-82a0-1ce7edcb98d6", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "vectorize-io", + "githubLatestCommit": "d364c5d0aeb096372cda6e36759e989fb2f3ba84", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cc4b2c82-0b4d-465d-a32f-a49e968b1c17_switchbot.json b/server/src/data/split/cc4b2c82-0b4d-465d-a32f-a49e968b1c17_switchbot.json index faacb2c..2b1c9eb 100644 --- a/server/src/data/split/cc4b2c82-0b4d-465d-a32f-a49e968b1c17_switchbot.json +++ b/server/src/data/split/cc4b2c82-0b4d-465d-a32f-a49e968b1c17_switchbot.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-28T09:41:24Z", "hubId": "cc4b2c82-0b4d-465d-a32f-a49e968b1c17", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3e22fda9a73482c28c3601b15e0eec062377f5d3", + "githubForks": 1, + "licenseType": "ISC" } \ No newline at end of file diff --git a/server/src/data/split/cc5a4976-4f31-4baf-b7d7-70e327ac3bee_time.json b/server/src/data/split/cc5a4976-4f31-4baf-b7d7-70e327ac3bee_time.json index 5e16c92..4373315 100644 --- a/server/src/data/split/cc5a4976-4f31-4baf-b7d7-70e327ac3bee_time.json +++ b/server/src/data/split/cc5a4976-4f31-4baf-b7d7-70e327ac3bee_time.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42047, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "cc5a4976-4f31-4baf-b7d7-70e327ac3bee", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4616, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cc8341da-f0db-442d-ac0a-793ec38b1cd3_replicate.json b/server/src/data/split/cc8341da-f0db-442d-ac0a-793ec38b1cd3_replicate.json index 36689b6..691ccef 100644 --- a/server/src/data/split/cc8341da-f0db-442d-ac0a-793ec38b1cd3_replicate.json +++ b/server/src/data/split/cc8341da-f0db-442d-ac0a-793ec38b1cd3_replicate.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2024-12-07T15:15:32Z", "hubId": "cc8341da-f0db-442d-ac0a-793ec38b1cd3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "590ac6cb1a8bfb3e3d63517d601711b01e1656c2", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cc94151d-11f3-4ccb-b128-3b7b6818afb0_echo.json b/server/src/data/split/cc94151d-11f3-4ccb-b128-3b7b6818afb0_echo.json index dff351c..bb5250a 100644 --- a/server/src/data/split/cc94151d-11f3-4ccb-b128-3b7b6818afb0_echo.json +++ b/server/src/data/split/cc94151d-11f3-4ccb-b128-3b7b6818afb0_echo.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 9, "downloadCount": 2431, "createdAt": "2025-03-18T05:52:43.105423Z", - "updatedAt": "2025-03-18T05:52:43.105423Z", + "updatedAt": "2025-03-18T00:01:47Z", "hubId": "cc94151d-11f3-4ccb-b128-3b7b6818afb0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "412adee6fa65f5d9f23fa593a2bae02fdfa7e398", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/ccab068c-92a2-4f65-93a9-04c6a05974a9_steamwebapi.json b/server/src/data/split/ccab068c-92a2-4f65-93a9-04c6a05974a9_steamwebapi.json index fd5bd86..a83e181 100644 --- a/server/src/data/split/ccab068c-92a2-4f65-93a9-04c6a05974a9_steamwebapi.json +++ b/server/src/data/split/ccab068c-92a2-4f65-93a9-04c6a05974a9_steamwebapi.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-18T23:29:39Z", "hubId": "ccab068c-92a2-4f65-93a9-04c6a05974a9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "081402ee19212f344c00daed8ead4e2d76db92ee", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cd0fbf70-5370-4924-805a-43e5ca9c0794_genkitintegration.json b/server/src/data/split/cd0fbf70-5370-4924-805a-43e5ca9c0794_genkitintegration.json index bf083b2..b785b81 100644 --- a/server/src/data/split/cd0fbf70-5370-4924-805a-43e5ca9c0794_genkitintegration.json +++ b/server/src/data/split/cd0fbf70-5370-4924-805a-43e5ca9c0794_genkitintegration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 1239, + "githubStars": 1730, "downloadCount": 176, "createdAt": "2025-02-17T22:27:07.661085Z", - "updatedAt": "2025-02-17T22:27:07.661085Z", + "updatedAt": "2025-04-28T21:40:45Z", "hubId": "cd0fbf70-5370-4924-805a-43e5ca9c0794", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9832be9185ec2341f923cc6656ea685564c37c21", + "githubForks": 240, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/cd1cad19-e1ac-49b7-9f66-f77d4106f364_trinity.json b/server/src/data/split/cd1cad19-e1ac-49b7-9f66-f77d4106f364_trinity.json index 02bc97e..70253e1 100644 --- a/server/src/data/split/cd1cad19-e1ac-49b7-9f66-f77d4106f364_trinity.json +++ b/server/src/data/split/cd1cad19-e1ac-49b7-9f66-f77d4106f364_trinity.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-11T03:16:26Z", "hubId": "cd1cad19-e1ac-49b7-9f66-f77d4106f364", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4ed150076cc93319ee54fc46bf27346d03be4b48", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/cd578e2e-70dc-47b1-b681-f878f17b80ed_mongodb.json b/server/src/data/split/cd578e2e-70dc-47b1-b681-f878f17b80ed_mongodb.json index f3599b4..49d5496 100644 --- a/server/src/data/split/cd578e2e-70dc-47b1-b681-f878f17b80ed_mongodb.json +++ b/server/src/data/split/cd578e2e-70dc-47b1-b681-f878f17b80ed_mongodb.json @@ -15,12 +15,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 177, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-26T19:15:34Z", "hubId": "cd578e2e-70dc-47b1-b681-f878f17b80ed", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8898120c1ce7b87b338cc4b71de3e99e74ad8c83", + "githubForks": 26, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cd770754-ffc0-46fc-a6d9-fff870728e8f_kubernetesobserver.json b/server/src/data/split/cd770754-ffc0-46fc-a6d9-fff870728e8f_kubernetesobserver.json index 3921d03..c808cfc 100644 --- a/server/src/data/split/cd770754-ffc0-46fc-a6d9-fff870728e8f_kubernetesobserver.json +++ b/server/src/data/split/cd770754-ffc0-46fc-a6d9-fff870728e8f_kubernetesobserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 23, + "githubStars": 37, "downloadCount": 41, "createdAt": "2025-02-18T06:07:51.693578Z", - "updatedAt": "2025-02-18T06:07:51.693578Z", + "updatedAt": "2025-04-26T17:45:46Z", "hubId": "cd770754-ffc0-46fc-a6d9-fff870728e8f", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "b6391eef367aac9803fc787acf29ce699616be2b", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cd82c5b7-4f6a-4817-bfbf-25f9f397cd24_dbsnp.json b/server/src/data/split/cd82c5b7-4f6a-4817-bfbf-25f9f397cd24_dbsnp.json index 9a8417e..30eade4 100644 --- a/server/src/data/split/cd82c5b7-4f6a-4817-bfbf-25f9f397cd24_dbsnp.json +++ b/server/src/data/split/cd82c5b7-4f6a-4817-bfbf-25f9f397cd24_dbsnp.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-11T06:55:31Z", "hubId": "cd82c5b7-4f6a-4817-bfbf-25f9f397cd24", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e2526673ebb8f313fb8cfa34d93a517571e3aa73", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/cd8b3b24-7d17-434d-a864-a2b8b228ef12_llamacloud.json b/server/src/data/split/cd8b3b24-7d17-434d-a864-a2b8b228ef12_llamacloud.json index ec4b01b..a9a0768 100644 --- a/server/src/data/split/cd8b3b24-7d17-434d-a864-a2b8b228ef12_llamacloud.json +++ b/server/src/data/split/cd8b3b24-7d17-434d-a864-a2b8b228ef12_llamacloud.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 73, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-24T14:47:37Z", "hubId": "cd8b3b24-7d17-434d-a864-a2b8b228ef12", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5b07690ecaa711ebf34acbe7e14a71c64bd29b72", + "githubForks": 13, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cd8baf87-d85e-41db-8dac-283d45005cf5_openmeteoweather.json b/server/src/data/split/cd8baf87-d85e-41db-8dac-283d45005cf5_openmeteoweather.json index 29359a3..13db094 100644 --- a/server/src/data/split/cd8baf87-d85e-41db-8dac-283d45005cf5_openmeteoweather.json +++ b/server/src/data/split/cd8baf87-d85e-41db-8dac-283d45005cf5_openmeteoweather.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-26T17:14:19Z", "hubId": "cd8baf87-d85e-41db-8dac-283d45005cf5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "82af8ed24aea3863215aa8b5d88af442e18a4080", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/cdfa9c69-4694-477e-85cb-1eb0fd245f1a_phonemcp.json b/server/src/data/split/cdfa9c69-4694-477e-85cb-1eb0fd245f1a_phonemcp.json index 0166aef..20b30f8 100644 --- a/server/src/data/split/cdfa9c69-4694-477e-85cb-1eb0fd245f1a_phonemcp.json +++ b/server/src/data/split/cdfa9c69-4694-477e-85cb-1eb0fd245f1a_phonemcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T14:50:25Z", "hubId": "cdfa9c69-4694-477e-85cb-1eb0fd245f1a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "hao-cyber", + "githubLatestCommit": "fb3dcee00a365a5e35d8091c11c993c617c4b20d", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ce1b9416-f2e7-4eb6-8bc7-d44120363260_xtwitter.json b/server/src/data/split/ce1b9416-f2e7-4eb6-8bc7-d44120363260_xtwitter.json index 6607b42..ac98121 100644 --- a/server/src/data/split/ce1b9416-f2e7-4eb6-8bc7-d44120363260_xtwitter.json +++ b/server/src/data/split/ce1b9416-f2e7-4eb6-8bc7-d44120363260_xtwitter.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-21T20:55:03Z", "hubId": "ce1b9416-f2e7-4eb6-8bc7-d44120363260", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9985497b0534cc4b377c42a7779f3486fba722fc", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ce88a272-2ff9-4808-94a0-8bc1869b2bd0_bearnotes.json b/server/src/data/split/ce88a272-2ff9-4808-94a0-8bc1869b2bd0_bearnotes.json index 8288b2a..85d770b 100644 --- a/server/src/data/split/ce88a272-2ff9-4808-94a0-8bc1869b2bd0_bearnotes.json +++ b/server/src/data/split/ce88a272-2ff9-4808-94a0-8bc1869b2bd0_bearnotes.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-22T05:59:15Z", "hubId": "ce88a272-2ff9-4808-94a0-8bc1869b2bd0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bb0fe8895aa3ead7615d3682f2d152da43f56b2a", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cec1d078-e5d4-4b4e-9208-c7b93be7a841_mermaiddiagramgenerator.json b/server/src/data/split/cec1d078-e5d4-4b4e-9208-c7b93be7a841_mermaiddiagramgenerator.json index 72c5bf4..11eb14a 100644 --- a/server/src/data/split/cec1d078-e5d4-4b4e-9208-c7b93be7a841_mermaiddiagramgenerator.json +++ b/server/src/data/split/cec1d078-e5d4-4b4e-9208-c7b93be7a841_mermaiddiagramgenerator.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-02T15:30:09Z", "hubId": "cec1d078-e5d4-4b4e-9208-c7b93be7a841", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "017a17e578480c37ff20f1ad1c70229cc4c14891", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cf09f594-ab6c-4ec9-851f-0dbdca6afec7_netlify.json b/server/src/data/split/cf09f594-ab6c-4ec9-851f-0dbdca6afec7_netlify.json index 464aec1..6168940 100644 --- a/server/src/data/split/cf09f594-ab6c-4ec9-851f-0dbdca6afec7_netlify.json +++ b/server/src/data/split/cf09f594-ab6c-4ec9-851f-0dbdca6afec7_netlify.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-08T05:54:13Z", "hubId": "cf09f594-ab6c-4ec9-851f-0dbdca6afec7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "61934bf4e2cbc997f1ef64ba28f8d91a2f6b71f9", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/cf3dca34-4664-4751-8725-793a28273eb2_fastmcptodo.json b/server/src/data/split/cf3dca34-4664-4751-8725-793a28273eb2_fastmcptodo.json index cdaa0ab..690f138 100644 --- a/server/src/data/split/cf3dca34-4664-4751-8725-793a28273eb2_fastmcptodo.json +++ b/server/src/data/split/cf3dca34-4664-4751-8725-793a28273eb2_fastmcptodo.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-25T19:25:08Z", "hubId": "cf3dca34-4664-4751-8725-793a28273eb2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "897a24acbe49897e841afe31d4b1ee087fd689ee", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/cf850860-58d4-4c09-83d3-df3c5b4ef379_apacheunomi.json b/server/src/data/split/cf850860-58d4-4c09-83d3-df3c5b4ef379_apacheunomi.json index a4d4726..b3d26af 100644 --- a/server/src/data/split/cf850860-58d4-4c09-83d3-df3c5b4ef379_apacheunomi.json +++ b/server/src/data/split/cf850860-58d4-4c09-83d3-df3c5b4ef379_apacheunomi.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2024-12-03T09:11:25Z", "hubId": "cf850860-58d4-4c09-83d3-df3c5b4ef379", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8030d9ebc368a6a460f9662b525add2fcd0efe0a", + "githubForks": 5, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d0362560-1cb7-4a22-a97c-671b7380f9a6_unstructuredapi.json b/server/src/data/split/d0362560-1cb7-4a22-a97c-671b7380f9a6_unstructuredapi.json index dfcb3ec..5005040 100644 --- a/server/src/data/split/d0362560-1cb7-4a22-a97c-671b7380f9a6_unstructuredapi.json +++ b/server/src/data/split/d0362560-1cb7-4a22-a97c-671b7380f9a6_unstructuredapi.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-09T09:28:37Z", "hubId": "d0362560-1cb7-4a22-a97c-671b7380f9a6", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "6ee23b31783985762f0e7fd61105bf85ef68a129", + "githubForks": 9 } \ No newline at end of file diff --git a/server/src/data/split/d04b8377-38c9-4f0b-a206-6759a1de06e6_shannonthinkingproblemsolving.json b/server/src/data/split/d04b8377-38c9-4f0b-a206-6759a1de06e6_shannonthinkingproblemsolving.json index 745bb73..43eab74 100644 --- a/server/src/data/split/d04b8377-38c9-4f0b-a206-6759a1de06e6_shannonthinkingproblemsolving.json +++ b/server/src/data/split/d04b8377-38c9-4f0b-a206-6759a1de06e6_shannonthinkingproblemsolving.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-18T13:22:35Z", "hubId": "d04b8377-38c9-4f0b-a206-6759a1de06e6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f4498daa412eede0a73596191effbab981820427", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d0a1a75e-af4e-4b7e-8a4a-b5054f493e41_mongodblens.json b/server/src/data/split/d0a1a75e-af4e-4b7e-8a4a-b5054f493e41_mongodblens.json index af49458..b202121 100644 --- a/server/src/data/split/d0a1a75e-af4e-4b7e-8a4a-b5054f493e41_mongodblens.json +++ b/server/src/data/split/d0a1a75e-af4e-4b7e-8a4a-b5054f493e41_mongodblens.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 121, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-23T00:44:03Z", "hubId": "d0a1a75e-af4e-4b7e-8a4a-b5054f493e41", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9cce4b83bf9ed4bbde29079b88d61344c3277eff", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d0f0e12c-b83b-404b-94e4-7e8cda0c38ae_googletasks.json b/server/src/data/split/d0f0e12c-b83b-404b-94e4-7e8cda0c38ae_googletasks.json index 8b795f9..ea44814 100644 --- a/server/src/data/split/d0f0e12c-b83b-404b-94e4-7e8cda0c38ae_googletasks.json +++ b/server/src/data/split/d0f0e12c-b83b-404b-94e4-7e8cda0c38ae_googletasks.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 37, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-02-02T19:25:00Z", "hubId": "d0f0e12c-b83b-404b-94e4-7e8cda0c38ae", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c4c903f3de42aecbbb0df61f4cb39a93229d957f", + "githubForks": 13, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d16085f3-5565-44c4-b644-c9ee31017379_sqliteexplorer.json b/server/src/data/split/d16085f3-5565-44c4-b644-c9ee31017379_sqliteexplorer.json index 8166883..3a6cdca 100644 --- a/server/src/data/split/d16085f3-5565-44c4-b644-c9ee31017379_sqliteexplorer.json +++ b/server/src/data/split/d16085f3-5565-44c4-b644-c9ee31017379_sqliteexplorer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-10T14:43:48Z", "hubId": "d16085f3-5565-44c4-b644-c9ee31017379", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "05191e95d1ca74f7c26312ae071f5fab42c19601", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d1650bb0-a8cb-4f7b-ba61-c489a748daec_audius.json b/server/src/data/split/d1650bb0-a8cb-4f7b-ba61-c489a748daec_audius.json index 493f4be..28b3d7e 100644 --- a/server/src/data/split/d1650bb0-a8cb-4f7b-ba61-c489a748daec_audius.json +++ b/server/src/data/split/d1650bb0-a8cb-4f7b-ba61-c489a748daec_audius.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-04-28T15:08:37Z", "hubId": "d1650bb0-a8cb-4f7b-ba61-c489a748daec", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ed829342c496512e68eee942018377bff91e72b5", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/d166541d-3b11-41f5-bca9-cb859b1eda10_docker.json b/server/src/data/split/d166541d-3b11-41f5-bca9-cb859b1eda10_docker.json index 8563cfd..4f52054 100644 --- a/server/src/data/split/d166541d-3b11-41f5-bca9-cb859b1eda10_docker.json +++ b/server/src/data/split/d166541d-3b11-41f5-bca9-cb859b1eda10_docker.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 253, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2024-12-14T03:54:41Z", "hubId": "d166541d-3b11-41f5-bca9-cb859b1eda10", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6dada7feb35543c0d335b84a02559b5d55fe4b85", + "githubForks": 29, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d1aa7426-aeff-4135-a82c-52bbc08a6793_repositorysearch.json b/server/src/data/split/d1aa7426-aeff-4135-a82c-52bbc08a6793_repositorysearch.json index 7bd717b..83a83fd 100644 --- a/server/src/data/split/d1aa7426-aeff-4135-a82c-52bbc08a6793_repositorysearch.json +++ b/server/src/data/split/d1aa7426-aeff-4135-a82c-52bbc08a6793_repositorysearch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-09T01:16:12Z", "hubId": "d1aa7426-aeff-4135-a82c-52bbc08a6793", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a94450c4a7a7b7f17c89fbe8cfc32cb2206d44cb", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/d1cea0a8-3012-42e5-884f-ba856d4fdf50_tavilysearch.json b/server/src/data/split/d1cea0a8-3012-42e5-884f-ba856d4fdf50_tavilysearch.json index 014f734..13101e4 100644 --- a/server/src/data/split/d1cea0a8-3012-42e5-884f-ba856d4fdf50_tavilysearch.json +++ b/server/src/data/split/d1cea0a8-3012-42e5-884f-ba856d4fdf50_tavilysearch.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-30T17:41:18Z", "hubId": "d1cea0a8-3012-42e5-884f-ba856d4fdf50", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bc8e8a7d5484632a3829cb9dbfb8efb9d8462d53", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d215609a-c4e2-4d31-a396-9ae74af91e74_twitterconnect.json b/server/src/data/split/d215609a-c4e2-4d31-a396-9ae74af91e74_twitterconnect.json index bc524e3..7b4ebae 100644 --- a/server/src/data/split/d215609a-c4e2-4d31-a396-9ae74af91e74_twitterconnect.json +++ b/server/src/data/split/d215609a-c4e2-4d31-a396-9ae74af91e74_twitterconnect.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-16T06:18:13Z", "hubId": "d215609a-c4e2-4d31-a396-9ae74af91e74", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a74d66f1075bab7677650ef631a9b70e6262f3a1", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/d2392d7e-f2c3-42b8-bc2c-2ac42d5da39a_typescriptmcpsdk.json b/server/src/data/split/d2392d7e-f2c3-42b8-bc2c-2ac42d5da39a_typescriptmcpsdk.json index 086bab9..e60bffb 100644 --- a/server/src/data/split/d2392d7e-f2c3-42b8-bc2c-2ac42d5da39a_typescriptmcpsdk.json +++ b/server/src/data/split/d2392d7e-f2c3-42b8-bc2c-2ac42d5da39a_typescriptmcpsdk.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5927, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T17:39:31Z", "hubId": "d2392d7e-f2c3-42b8-bc2c-2ac42d5da39a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "modelcontextprotocol", + "githubLatestCommit": "7e18c7016943af389b16bd670671c3527e3da21d", + "githubForks": 675, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d24c0e9d-14c5-4340-97fe-43105162cce3_devhubcmsmcp.json b/server/src/data/split/d24c0e9d-14c5-4340-97fe-43105162cce3_devhubcmsmcp.json index fc88d3a..8d0806c 100644 --- a/server/src/data/split/d24c0e9d-14c5-4340-97fe-43105162cce3_devhubcmsmcp.json +++ b/server/src/data/split/d24c0e9d-14c5-4340-97fe-43105162cce3_devhubcmsmcp.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T22:55:43.866632+00:00", - "updatedAt": "2025-03-17T22:55:43.866632+00:00", + "updatedAt": "2025-03-24T13:08:41Z", "hubId": "d24c0e9d-14c5-4340-97fe-43105162cce3", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "c9f904c686a1ceec5d85709d117174d33925558a", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/d25f6665-d678-4c8d-9c06-a44ec97c7f98_gitforensics.json b/server/src/data/split/d25f6665-d678-4c8d-9c06-a44ec97c7f98_gitforensics.json index 7413d9c..5675549 100644 --- a/server/src/data/split/d25f6665-d678-4c8d-9c06-a44ec97c7f98_gitforensics.json +++ b/server/src/data/split/d25f6665-d678-4c8d-9c06-a44ec97c7f98_gitforensics.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-02-05T03:15:35Z", "hubId": "d25f6665-d678-4c8d-9c06-a44ec97c7f98", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a7bf43035f0a93d511532959dd2ecb480c10b399", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d2aa916b-f45d-4bcf-bd0b-2b1342715769_deepseekthinker.json b/server/src/data/split/d2aa916b-f45d-4bcf-bd0b-2b1342715769_deepseekthinker.json index cefe8ee..dbdb314 100644 --- a/server/src/data/split/d2aa916b-f45d-4bcf-bd0b-2b1342715769_deepseekthinker.json +++ b/server/src/data/split/d2aa916b-f45d-4bcf-bd0b-2b1342715769_deepseekthinker.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 44, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-25T13:55:34Z", "hubId": "d2aa916b-f45d-4bcf-bd0b-2b1342715769", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d9152ba424bd14422851ac718e02b8ba79f971cc", + "githubForks": 9 } \ No newline at end of file diff --git a/server/src/data/split/d2c853b0-5eab-45a7-ba20-ab5847870083_tavilysearch.json b/server/src/data/split/d2c853b0-5eab-45a7-ba20-ab5847870083_tavilysearch.json index ef79af1..4854a89 100644 --- a/server/src/data/split/d2c853b0-5eab-45a7-ba20-ab5847870083_tavilysearch.json +++ b/server/src/data/split/d2c853b0-5eab-45a7-ba20-ab5847870083_tavilysearch.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-06T07:58:00Z", "hubId": "d2c853b0-5eab-45a7-ba20-ab5847870083", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4720e7a8d7d501946b3d7f06cdd6ed015eaa5304", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d2c8f232-23f7-4689-a790-4783215463a4_hubspot.json b/server/src/data/split/d2c8f232-23f7-4689-a790-4783215463a4_hubspot.json index ecd5c56..b1cbd8a 100644 --- a/server/src/data/split/d2c8f232-23f7-4689-a790-4783215463a4_hubspot.json +++ b/server/src/data/split/d2c8f232-23f7-4689-a790-4783215463a4_hubspot.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 57, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T00:15:39Z", "hubId": "d2c8f232-23f7-4689-a790-4783215463a4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "peakmojo", + "githubLatestCommit": "00aff63d916ee8cd69b2805976f06234b60d199d", + "githubForks": 28, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d30341a6-3fbc-4ab1-b140-48334b61ec7d_raindropio.json b/server/src/data/split/d30341a6-3fbc-4ab1-b140-48334b61ec7d_raindropio.json index 92f70e5..9c8cb2f 100644 --- a/server/src/data/split/d30341a6-3fbc-4ab1-b140-48334b61ec7d_raindropio.json +++ b/server/src/data/split/d30341a6-3fbc-4ab1-b140-48334b61ec7d_raindropio.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T03:41:18Z", "hubId": "d30341a6-3fbc-4ab1-b140-48334b61ec7d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "hiromitsusasaki", + "githubLatestCommit": "24fa79066fc06636f020e918254cd52792e7ecf2", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/d306641d-00cf-4250-9f13-ac75e27cf124_ticketmaster.json b/server/src/data/split/d306641d-00cf-4250-9f13-ac75e27cf124_ticketmaster.json index 3f8d570..fc14d7d 100644 --- a/server/src/data/split/d306641d-00cf-4250-9f13-ac75e27cf124_ticketmaster.json +++ b/server/src/data/split/d306641d-00cf-4250-9f13-ac75e27cf124_ticketmaster.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-01-18T10:19:37Z", "hubId": "d306641d-00cf-4250-9f13-ac75e27cf124", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "14411843cdecc88957c61a9d8b576cbaf5e65c09", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d32d737a-5da4-4f8b-9924-3b3ab4cc49f8_discordrelay.json b/server/src/data/split/d32d737a-5da4-4f8b-9924-3b3ab4cc49f8_discordrelay.json index 95db678..7dc9978 100644 --- a/server/src/data/split/d32d737a-5da4-4f8b-9924-3b3ab4cc49f8_discordrelay.json +++ b/server/src/data/split/d32d737a-5da4-4f8b-9924-3b3ab4cc49f8_discordrelay.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-01-26T05:06:12Z", "hubId": "d32d737a-5da4-4f8b-9924-3b3ab4cc49f8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8ee90532bb1e8a7bfe60c6a8606838440f2ff7ed", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/d36936cd-d1d4-4a4e-968d-be441ee34bb8_postman.json b/server/src/data/split/d36936cd-d1d4-4a4e-968d-be441ee34bb8_postman.json index 6f0a198..f6e2051 100644 --- a/server/src/data/split/d36936cd-d1d4-4a4e-968d-be441ee34bb8_postman.json +++ b/server/src/data/split/d36936cd-d1d4-4a4e-968d-be441ee34bb8_postman.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 78, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-01-28T18:33:04Z", "hubId": "d36936cd-d1d4-4a4e-968d-be441ee34bb8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3fa76f43fbd3069917e1a38592939fd808ff23bd", + "githubForks": 10, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d375b620-3ea2-4f74-ad32-1de33b6f05e8_fileoperations.json b/server/src/data/split/d375b620-3ea2-4f74-ad32-1de33b6f05e8_fileoperations.json index aa01eeb..12c8c34 100644 --- a/server/src/data/split/d375b620-3ea2-4f74-ad32-1de33b6f05e8_fileoperations.json +++ b/server/src/data/split/d375b620-3ea2-4f74-ad32-1de33b6f05e8_fileoperations.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-13T14:51:12Z", "hubId": "d375b620-3ea2-4f74-ad32-1de33b6f05e8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dc26d22da8efff3e97d9d7f4ba3db40bee403609", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d3ba26a8-471a-47e4-aa13-31c03b90b824_githubrepositorymanager.json b/server/src/data/split/d3ba26a8-471a-47e4-aa13-31c03b90b824_githubrepositorymanager.json index bc0cff9..842ced1 100644 --- a/server/src/data/split/d3ba26a8-471a-47e4-aa13-31c03b90b824_githubrepositorymanager.json +++ b/server/src/data/split/d3ba26a8-471a-47e4-aa13-31c03b90b824_githubrepositorymanager.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-01-10T08:35:50Z", "hubId": "d3ba26a8-471a-47e4-aa13-31c03b90b824", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bee5484266ba3a749899fddbe46f74474bfb90e8", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/d3c00509-34b6-4824-bf99-f1d1bc64805f_googledrive.json b/server/src/data/split/d3c00509-34b6-4824-bf99-f1d1bc64805f_googledrive.json index 8706041..4cba525 100644 --- a/server/src/data/split/d3c00509-34b6-4824-bf99-f1d1bc64805f_googledrive.json +++ b/server/src/data/split/d3c00509-34b6-4824-bf99-f1d1bc64805f_googledrive.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-11T14:38:35Z", "hubId": "d3c00509-34b6-4824-bf99-f1d1bc64805f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "277d61993ed205fc7b02663feef8503c06748156", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d3e48aaa-489b-47e6-a365-641185545de1_excelmaster.json b/server/src/data/split/d3e48aaa-489b-47e6-a365-641185545de1_excelmaster.json index d7eb560..8437b41 100644 --- a/server/src/data/split/d3e48aaa-489b-47e6-a365-641185545de1_excelmaster.json +++ b/server/src/data/split/d3e48aaa-489b-47e6-a365-641185545de1_excelmaster.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-06T17:26:30Z", "hubId": "d3e48aaa-489b-47e6-a365-641185545de1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "227cffce927c16d2990121c91c3d42c63a48b6c4", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/d3f7052d-3b90-4fd9-b4dd-128e9d73dd7d_imessagequery.json b/server/src/data/split/d3f7052d-3b90-4fd9-b4dd-128e9d73dd7d_imessagequery.json index 239d6d9..f347ec1 100644 --- a/server/src/data/split/d3f7052d-3b90-4fd9-b4dd-128e9d73dd7d_imessagequery.json +++ b/server/src/data/split/d3f7052d-3b90-4fd9-b4dd-128e9d73dd7d_imessagequery.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 44, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-15T06:59:36Z", "hubId": "d3f7052d-3b90-4fd9-b4dd-128e9d73dd7d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2ef9ca2e82b878da870801511a76bcfcd420e460", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/d3fd36d4-ccc1-4c39-86e9-a69c595d7527_notion.json b/server/src/data/split/d3fd36d4-ccc1-4c39-86e9-a69c595d7527_notion.json index 960e2de..52f8326 100644 --- a/server/src/data/split/d3fd36d4-ccc1-4c39-86e9-a69c595d7527_notion.json +++ b/server/src/data/split/d3fd36d4-ccc1-4c39-86e9-a69c595d7527_notion.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2024-12-06T06:41:23Z", "hubId": "d3fd36d4-ccc1-4c39-86e9-a69c595d7527", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b044be118d48cca58c585165eb479c9f70c5e1a6", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/d4016750-8518-46e7-883c-d33ab5492e76_ashramcpserver.json b/server/src/data/split/d4016750-8518-46e7-883c-d33ab5492e76_ashramcpserver.json index 3ff0bd8..d8f31ed 100644 --- a/server/src/data/split/d4016750-8518-46e7-883c-d33ab5492e76_ashramcpserver.json +++ b/server/src/data/split/d4016750-8518-46e7-883c-d33ab5492e76_ashramcpserver.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 0, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-26T18:59:29.969558+00:00", - "updatedAt": "2025-03-26T18:59:29.969558+00:00", + "updatedAt": "2025-03-26T14:55:01Z", "hubId": "d4016750-8518-46e7-883c-d33ab5492e76", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dae1ad6723ed1fc2c66131e7779ae612f432cf55", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/d4097d07-09b9-4dd9-802f-c06789337036_mathematicadocs.json b/server/src/data/split/d4097d07-09b9-4dd9-802f-c06789337036_mathematicadocs.json index d0db305..a2da9b8 100644 --- a/server/src/data/split/d4097d07-09b9-4dd9-802f-c06789337036_mathematicadocs.json +++ b/server/src/data/split/d4097d07-09b9-4dd9-802f-c06789337036_mathematicadocs.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-16T14:15:56Z", "hubId": "d4097d07-09b9-4dd9-802f-c06789337036", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1abc9aa97a9bdedf2f2fcaae148c012db1cb3038", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d40faebd-02dd-4880-a0d1-2755197faaa1_filesystem.json b/server/src/data/split/d40faebd-02dd-4880-a0d1-2755197faaa1_filesystem.json index 92f925c..d150fd7 100644 --- a/server/src/data/split/d40faebd-02dd-4880-a0d1-2755197faaa1_filesystem.json +++ b/server/src/data/split/d40faebd-02dd-4880-a0d1-2755197faaa1_filesystem.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 222, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-03-06T09:06:22Z", "hubId": "d40faebd-02dd-4880-a0d1-2755197faaa1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "21b46d72f790d59136dbf7c676abf8f2037d416a", + "githubForks": 32, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d481737c-a257-4e12-87b8-809a36f6e55d_azuretablestorage.json b/server/src/data/split/d481737c-a257-4e12-87b8-809a36f6e55d_azuretablestorage.json index 90d10e1..d4357fc 100644 --- a/server/src/data/split/d481737c-a257-4e12-87b8-809a36f6e55d_azuretablestorage.json +++ b/server/src/data/split/d481737c-a257-4e12-87b8-809a36f6e55d_azuretablestorage.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2024-12-23T13:10:44Z", "hubId": "d481737c-a257-4e12-87b8-809a36f6e55d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "94416fa77f7b947ef6d26817ed826cc9112903c2", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d487868c-bed9-4d1e-b6a5-b3c4906e93b6_minecraftbotcontrol.json b/server/src/data/split/d487868c-bed9-4d1e-b6a5-b3c4906e93b6_minecraftbotcontrol.json index 4c8f324..4024bc4 100644 --- a/server/src/data/split/d487868c-bed9-4d1e-b6a5-b3c4906e93b6_minecraftbotcontrol.json +++ b/server/src/data/split/d487868c-bed9-4d1e-b6a5-b3c4906e93b6_minecraftbotcontrol.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2024-12-22T22:35:53Z", "hubId": "d487868c-bed9-4d1e-b6a5-b3c4906e93b6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b2b0a32e1d1a3a6fa92e7630d9bc3608d9837650", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d497a11e-e47f-4612-84bf-ea521f92dce6_postgresqlschemainspector.json b/server/src/data/split/d497a11e-e47f-4612-84bf-ea521f92dce6_postgresqlschemainspector.json index a4596bd..63a6a40 100644 --- a/server/src/data/split/d497a11e-e47f-4612-84bf-ea521f92dce6_postgresqlschemainspector.json +++ b/server/src/data/split/d497a11e-e47f-4612-84bf-ea521f92dce6_postgresqlschemainspector.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-02-14T04:01:46Z", "hubId": "d497a11e-e47f-4612-84bf-ea521f92dce6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "66fd83b262580c4ca44a35ce44089e6973ae88e2", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/d4d62f92-875d-416e-b6e6-99b32f6de0e3_ollama.json b/server/src/data/split/d4d62f92-875d-416e-b6e6-99b32f6de0e3_ollama.json index 476e78b..03a6962 100644 --- a/server/src/data/split/d4d62f92-875d-416e-b6e6-99b32f6de0e3_ollama.json +++ b/server/src/data/split/d4d62f92-875d-416e-b6e6-99b32f6de0e3_ollama.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 52, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-20T19:58:29Z", "hubId": "d4d62f92-875d-416e-b6e6-99b32f6de0e3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4d276b80e6c8da2faae5d8f2799ca81b54723680", + "githubForks": 6, + "licenseType": "AGPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/d5e6e67f-5981-4e9e-835f-2609242990ea_make.json b/server/src/data/split/d5e6e67f-5981-4e9e-835f-2609242990ea_make.json index 2922574..f6b4d0b 100644 --- a/server/src/data/split/d5e6e67f-5981-4e9e-835f-2609242990ea_make.json +++ b/server/src/data/split/d5e6e67f-5981-4e9e-835f-2609242990ea_make.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-04T20:13:06Z", "hubId": "d5e6e67f-5981-4e9e-835f-2609242990ea", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "844a0efd5df332231d1e736cdacebca283a003ad", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/d6035733-55c7-4f53-8350-90aa08a1f409_dingdingdingtalk.json b/server/src/data/split/d6035733-55c7-4f53-8350-90aa08a1f409_dingdingdingtalk.json index c7972eb..82dd19f 100644 --- a/server/src/data/split/d6035733-55c7-4f53-8350-90aa08a1f409_dingdingdingtalk.json +++ b/server/src/data/split/d6035733-55c7-4f53-8350-90aa08a1f409_dingdingdingtalk.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-22T07:21:42Z", "hubId": "d6035733-55c7-4f53-8350-90aa08a1f409", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1fe064a4f5fde12913c8b153d73811d1a5dbfb89", + "githubForks": 2, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/d613499b-56aa-4918-8955-f7d3c62c98eb_discord.json b/server/src/data/split/d613499b-56aa-4918-8955-f7d3c62c98eb_discord.json index 0990590..0e7479b 100644 --- a/server/src/data/split/d613499b-56aa-4918-8955-f7d3c62c98eb_discord.json +++ b/server/src/data/split/d613499b-56aa-4918-8955-f7d3c62c98eb_discord.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 66, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-01-21T06:21:56Z", "hubId": "d613499b-56aa-4918-8955-f7d3c62c98eb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "39622af0333bcd324e811a2390146927517fb03d", + "githubForks": 22 } \ No newline at end of file diff --git a/server/src/data/split/d62184f1-7b8c-453e-ae01-c6b7deb26b18_sendgrid.json b/server/src/data/split/d62184f1-7b8c-453e-ae01-c6b7deb26b18_sendgrid.json index 1d438ec..2bdf355 100644 --- a/server/src/data/split/d62184f1-7b8c-453e-ae01-c6b7deb26b18_sendgrid.json +++ b/server/src/data/split/d62184f1-7b8c-453e-ae01-c6b7deb26b18_sendgrid.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 10, "downloadCount": 299, "createdAt": "2025-02-23T01:48:41.737092Z", - "updatedAt": "2025-02-23T01:48:41.737092Z", + "updatedAt": "2025-02-25T23:41:32Z", "hubId": "d62184f1-7b8c-453e-ae01-c6b7deb26b18", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "aafb827caa04d15a27d7d092d95b8dc468b98ec3", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/d645bc4a-5869-4a98-b1d9-a0409e144be8_privategpt.json b/server/src/data/split/d645bc4a-5869-4a98-b1d9-a0409e144be8_privategpt.json index e71b45c..d544214 100644 --- a/server/src/data/split/d645bc4a-5869-4a98-b1d9-a0409e144be8_privategpt.json +++ b/server/src/data/split/d645bc4a-5869-4a98-b1d9-a0409e144be8_privategpt.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-04-15T14:56:22Z", "hubId": "d645bc4a-5869-4a98-b1d9-a0409e144be8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4a2924d0dd53437f20c16b517610040e70b83dee", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d65d21de-617c-48ac-b8ea-f1b9a75bea69_canvaslearningmanagementsystem.json b/server/src/data/split/d65d21de-617c-48ac-b8ea-f1b9a75bea69_canvaslearningmanagementsystem.json index 7da781a..f1f30f0 100644 --- a/server/src/data/split/d65d21de-617c-48ac-b8ea-f1b9a75bea69_canvaslearningmanagementsystem.json +++ b/server/src/data/split/d65d21de-617c-48ac-b8ea-f1b9a75bea69_canvaslearningmanagementsystem.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-04-19T20:45:58Z", "hubId": "d65d21de-617c-48ac-b8ea-f1b9a75bea69", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "78e90b57ee3a49e3df68dca2de069d685c3bdcfb", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d69d34fa-8ea3-4a53-acbf-037a638ce88d_qdrantragdocs.json b/server/src/data/split/d69d34fa-8ea3-4a53-acbf-037a638ce88d_qdrantragdocs.json index e511f1b..ccc6ef4 100644 --- a/server/src/data/split/d69d34fa-8ea3-4a53-acbf-037a638ce88d_qdrantragdocs.json +++ b/server/src/data/split/d69d34fa-8ea3-4a53-acbf-037a638ce88d_qdrantragdocs.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2024-12-21T16:18:56Z", "hubId": "d69d34fa-8ea3-4a53-acbf-037a638ce88d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "49101ee600ec9365becd8efb4d97e92edf88f439", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d6b85357-892a-44f0-9be1-bf6b5954551b_googlemaps.json b/server/src/data/split/d6b85357-892a-44f0-9be1-bf6b5954551b_googlemaps.json index 8685730..4d939f6 100644 --- a/server/src/data/split/d6b85357-892a-44f0-9be1-bf6b5954551b_googlemaps.json +++ b/server/src/data/split/d6b85357-892a-44f0-9be1-bf6b5954551b_googlemaps.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 24364, + "githubStars": 42075, "downloadCount": 952, "createdAt": "2025-02-17T22:46:16.116171Z", - "updatedAt": "2025-02-17T22:46:16.116171Z", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "d6b85357-892a-44f0-9be1-bf6b5954551b", "isOfficialIntegration": false, "isReferenceServer": true, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d6ea1a18-1059-4f4a-b2cb-e35cee521401_mistralocr.json b/server/src/data/split/d6ea1a18-1059-4f4a-b2cb-e35cee521401_mistralocr.json index 2caa99c..82c60b1 100644 --- a/server/src/data/split/d6ea1a18-1059-4f4a-b2cb-e35cee521401_mistralocr.json +++ b/server/src/data/split/d6ea1a18-1059-4f4a-b2cb-e35cee521401_mistralocr.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-09T15:18:01Z", "hubId": "d6ea1a18-1059-4f4a-b2cb-e35cee521401", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1bebe952232933829c1df0f5d71aeb47faae2b1c", + "githubForks": 5 } \ No newline at end of file diff --git a/server/src/data/split/d6f2f549-c06c-485f-adf1-edc0e31084b1_stripe.json b/server/src/data/split/d6f2f549-c06c-485f-adf1-edc0e31084b1_stripe.json index af9a307..bac7558 100644 --- a/server/src/data/split/d6f2f549-c06c-485f-adf1-edc0e31084b1_stripe.json +++ b/server/src/data/split/d6f2f549-c06c-485f-adf1-edc0e31084b1_stripe.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 568, + "githubStars": 677, "downloadCount": 650, "createdAt": "2025-02-18T06:28:40.359883Z", - "updatedAt": "2025-02-18T06:28:40.359883Z", + "updatedAt": "2025-04-28T19:33:37Z", "hubId": "d6f2f549-c06c-485f-adf1-edc0e31084b1", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "aa4964fea195a4b0f85aa0c689a303e724f2465f", + "githubForks": 86, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d71b68c2-ca76-47ac-8a6c-dd66afcbf45d_cursoride.json b/server/src/data/split/d71b68c2-ca76-47ac-8a6c-dd66afcbf45d_cursoride.json index 8c17805..e0787a4 100644 --- a/server/src/data/split/d71b68c2-ca76-47ac-8a6c-dd66afcbf45d_cursoride.json +++ b/server/src/data/split/d71b68c2-ca76-47ac-8a6c-dd66afcbf45d_cursoride.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 38, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-02-01T16:21:55Z", "hubId": "d71b68c2-ca76-47ac-8a6c-dd66afcbf45d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bc144b4fb3b03d775af9efddeffaae6b66d5ed6f", + "githubForks": 15, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d7224d49-c0a9-4606-8282-14f352bc2568_blastenginemailer.json b/server/src/data/split/d7224d49-c0a9-4606-8282-14f352bc2568_blastenginemailer.json index 473fd91..b3ae689 100644 --- a/server/src/data/split/d7224d49-c0a9-4606-8282-14f352bc2568_blastenginemailer.json +++ b/server/src/data/split/d7224d49-c0a9-4606-8282-14f352bc2568_blastenginemailer.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-20T06:10:01Z", "hubId": "d7224d49-c0a9-4606-8282-14f352bc2568", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "23a9f48e2f408d9a200c23100c5615eaf3a0722a", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d7361998-b521-4ed9-abd0-2ba9f7ad607a_playwrightcdp.json b/server/src/data/split/d7361998-b521-4ed9-abd0-2ba9f7ad607a_playwrightcdp.json index 4d80d57..8d4e99b 100644 --- a/server/src/data/split/d7361998-b521-4ed9-abd0-2ba9f7ad607a_playwrightcdp.json +++ b/server/src/data/split/d7361998-b521-4ed9-abd0-2ba9f7ad607a_playwrightcdp.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-02-12T14:00:24Z", "hubId": "d7361998-b521-4ed9-abd0-2ba9f7ad607a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c5282fd9d394cae5c05e1a3e889c22609c07d658", + "githubForks": 6, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/d766f4c1-b1d2-42d3-991d-7bd4b1666eeb_pythondocs.json b/server/src/data/split/d766f4c1-b1d2-42d3-991d-7bd4b1666eeb_pythondocs.json index f03ae6c..ed11200 100644 --- a/server/src/data/split/d766f4c1-b1d2-42d3-991d-7bd4b1666eeb_pythondocs.json +++ b/server/src/data/split/d766f4c1-b1d2-42d3-991d-7bd4b1666eeb_pythondocs.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-14T07:08:36Z", "hubId": "d766f4c1-b1d2-42d3-991d-7bd4b1666eeb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6d4dbc4268f11490b19c11bd9318174a2900df52", + "githubForks": 3, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d77ba6b7-4d0f-4f94-bdd9-28c0271421d7_fluxschnell.json b/server/src/data/split/d77ba6b7-4d0f-4f94-bdd9-28c0271421d7_fluxschnell.json index 52a8f0c..de72fbb 100644 --- a/server/src/data/split/d77ba6b7-4d0f-4f94-bdd9-28c0271421d7_fluxschnell.json +++ b/server/src/data/split/d77ba6b7-4d0f-4f94-bdd9-28c0271421d7_fluxschnell.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-02T06:39:09Z", "hubId": "d77ba6b7-4d0f-4f94-bdd9-28c0271421d7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "825cd2ec04f1098284854ece02f3c64769ab55d4", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d78c9aa8-fb65-4fad-8fa7-a38374e93a0e_perplexity.json b/server/src/data/split/d78c9aa8-fb65-4fad-8fa7-a38374e93a0e_perplexity.json index 0ee005f..8db256d 100644 --- a/server/src/data/split/d78c9aa8-fb65-4fad-8fa7-a38374e93a0e_perplexity.json +++ b/server/src/data/split/d78c9aa8-fb65-4fad-8fa7-a38374e93a0e_perplexity.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-22T03:46:55Z", "hubId": "d78c9aa8-fb65-4fad-8fa7-a38374e93a0e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0223faa3bf96053bbb1ad6714e5ed16eafed64ef", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d7a1e19b-044b-4988-95a1-72730df49002_perplexityaisearch.json b/server/src/data/split/d7a1e19b-044b-4988-95a1-72730df49002_perplexityaisearch.json index 5fa6a60..98f765d 100644 --- a/server/src/data/split/d7a1e19b-044b-4988-95a1-72730df49002_perplexityaisearch.json +++ b/server/src/data/split/d7a1e19b-044b-4988-95a1-72730df49002_perplexityaisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-09T14:59:51Z", "hubId": "d7a1e19b-044b-4988-95a1-72730df49002", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fa47698d34f733aa1ab974e987a954b81626e452", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d7c55a0e-6ca2-4b8e-96ea-d513afb922b1_location.json b/server/src/data/split/d7c55a0e-6ca2-4b8e-96ea-d513afb922b1_location.json index 60f08a9..27ece01 100644 --- a/server/src/data/split/d7c55a0e-6ca2-4b8e-96ea-d513afb922b1_location.json +++ b/server/src/data/split/d7c55a0e-6ca2-4b8e-96ea-d513afb922b1_location.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-25T18:21:08Z", "hubId": "d7c55a0e-6ca2-4b8e-96ea-d513afb922b1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8a96d46eb89a35756be3d5f64882aa17d21adcf4", + "githubForks": 0, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d7f03b09-e30c-4d56-b7ca-d58cbc6cda4d_unitycatalog.json b/server/src/data/split/d7f03b09-e30c-4d56-b7ca-d58cbc6cda4d_unitycatalog.json index 7e74b77..67a319d 100644 --- a/server/src/data/split/d7f03b09-e30c-4d56-b7ca-d58cbc6cda4d_unitycatalog.json +++ b/server/src/data/split/d7f03b09-e30c-4d56-b7ca-d58cbc6cda4d_unitycatalog.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-28T19:41:03Z", "hubId": "d7f03b09-e30c-4d56-b7ca-d58cbc6cda4d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "ognis1205", + "githubLatestCommit": "0933eba52af230789c6ae01b452e4eea8d9836c5", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d7f04041-b366-46b5-a394-f873a04ad7fe_atlassian.json b/server/src/data/split/d7f04041-b366-46b5-a394-f873a04ad7fe_atlassian.json index 26c476c..7d18ace 100644 --- a/server/src/data/split/d7f04041-b366-46b5-a394-f873a04ad7fe_atlassian.json +++ b/server/src/data/split/d7f04041-b366-46b5-a394-f873a04ad7fe_atlassian.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 3, + "githubStars": 7, "downloadCount": 1400, "createdAt": "2025-02-18T23:04:29.548307Z", - "updatedAt": "2025-02-18T23:04:29.548307Z", + "updatedAt": "2025-02-18T22:38:49Z", "hubId": "d7f04041-b366-46b5-a394-f873a04ad7fe", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6c9356b693cfede7805a7438fbc087bb6e33e890", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d87ea28e-2008-4f33-bbfc-b7aa1976ca43_reddit.json b/server/src/data/split/d87ea28e-2008-4f33-bbfc-b7aa1976ca43_reddit.json index cb69189..c0a47ae 100644 --- a/server/src/data/split/d87ea28e-2008-4f33-bbfc-b7aa1976ca43_reddit.json +++ b/server/src/data/split/d87ea28e-2008-4f33-bbfc-b7aa1976ca43_reddit.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-02T02:48:18Z", "hubId": "d87ea28e-2008-4f33-bbfc-b7aa1976ca43", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "949f990f4af3d51b586639b15554d1a27b63676c", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d881d88d-9a58-4622-8ad4-5abe45cf43fb_localgit.json b/server/src/data/split/d881d88d-9a58-4622-8ad4-5abe45cf43fb_localgit.json index 11a8373..f90fa2a 100644 --- a/server/src/data/split/d881d88d-9a58-4622-8ad4-5abe45cf43fb_localgit.json +++ b/server/src/data/split/d881d88d-9a58-4622-8ad4-5abe45cf43fb_localgit.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-01-06T13:48:50Z", "hubId": "d881d88d-9a58-4622-8ad4-5abe45cf43fb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e4bd03719b7354d1bcfca12fe63e546be36d2478", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/d916876b-b62d-4630-8791-36ca3c42535f_databasebulkupdate.json b/server/src/data/split/d916876b-b62d-4630-8791-36ca3c42535f_databasebulkupdate.json index 37034b5..92d4712 100644 --- a/server/src/data/split/d916876b-b62d-4630-8791-36ca3c42535f_databasebulkupdate.json +++ b/server/src/data/split/d916876b-b62d-4630-8791-36ca3c42535f_databasebulkupdate.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-11T17:18:21Z", "hubId": "d916876b-b62d-4630-8791-36ca3c42535f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6e121f9ca727d6409e943aa740044e6df060a9c2", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d965f4b8-0d4c-4ec7-b5a7-3bb861243d2c_hyperliquid.json b/server/src/data/split/d965f4b8-0d4c-4ec7-b5a7-3bb861243d2c_hyperliquid.json index 98b0006..6e0bc14 100644 --- a/server/src/data/split/d965f4b8-0d4c-4ec7-b5a7-3bb861243d2c_hyperliquid.json +++ b/server/src/data/split/d965f4b8-0d4c-4ec7-b5a7-3bb861243d2c_hyperliquid.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-06T16:29:15Z", "hubId": "d965f4b8-0d4c-4ec7-b5a7-3bb861243d2c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a7ee89e10d6d5b4dd58ef85c4aa6511cdc7132fb", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/d9ac1961-5c59-4e21-9e4c-ae5b9d8b35c8_xiyansqlmysql.json b/server/src/data/split/d9ac1961-5c59-4e21-9e4c-ae5b9d8b35c8_xiyansqlmysql.json index a28f1b5..6a72aab 100644 --- a/server/src/data/split/d9ac1961-5c59-4e21-9e4c-ae5b9d8b35c8_xiyansqlmysql.json +++ b/server/src/data/split/d9ac1961-5c59-4e21-9e4c-ae5b9d8b35c8_xiyansqlmysql.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 107, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-04-25T02:06:08Z", "hubId": "d9ac1961-5c59-4e21-9e4c-ae5b9d8b35c8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b644002ca51278c7311f1f16042f0ffa37c464ca", + "githubForks": 19, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/d9e8407b-cd72-422a-9d48-36371a3138d7_memoryusagedashboard.json b/server/src/data/split/d9e8407b-cd72-422a-9d48-36371a3138d7_memoryusagedashboard.json index 6ecc2ad..6893f0f 100644 --- a/server/src/data/split/d9e8407b-cd72-422a-9d48-36371a3138d7_memoryusagedashboard.json +++ b/server/src/data/split/d9e8407b-cd72-422a-9d48-36371a3138d7_memoryusagedashboard.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-26T08:22:58Z", "hubId": "d9e8407b-cd72-422a-9d48-36371a3138d7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f4674ec5a627d18eae7efafff460efa924f20083", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/d9ece42f-b731-4e7c-8b42-85a4af835bb2_websitedownloaderwindows.json b/server/src/data/split/d9ece42f-b731-4e7c-8b42-85a4af835bb2_websitedownloaderwindows.json index 25fedb5..882bebc 100644 --- a/server/src/data/split/d9ece42f-b731-4e7c-8b42-85a4af835bb2_websitedownloaderwindows.json +++ b/server/src/data/split/d9ece42f-b731-4e7c-8b42-85a4af835bb2_websitedownloaderwindows.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-01-27T04:43:04Z", "hubId": "d9ece42f-b731-4e7c-8b42-85a4af835bb2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1444836535e0c647aa1ce630f1b0c592f14f1b35", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/da1680dc-c29f-41bc-a502-63162fe7198c_strava.json b/server/src/data/split/da1680dc-c29f-41bc-a502-63162fe7198c_strava.json index 09de2b0..d372831 100644 --- a/server/src/data/split/da1680dc-c29f-41bc-a502-63162fe7198c_strava.json +++ b/server/src/data/split/da1680dc-c29f-41bc-a502-63162fe7198c_strava.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-05T01:47:37Z", "hubId": "da1680dc-c29f-41bc-a502-63162fe7198c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2d8fe622d543036ae5bc35b414122b3182cf06b1", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/da1a6095-8573-4382-9b6c-d308a44abc3e_starknet.json b/server/src/data/split/da1a6095-8573-4382-9b6c-d308a44abc3e_starknet.json index 4ce7f12..0c30f91 100644 --- a/server/src/data/split/da1a6095-8573-4382-9b6c-d308a44abc3e_starknet.json +++ b/server/src/data/split/da1a6095-8573-4382-9b6c-d308a44abc3e_starknet.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-03-04T11:37:50Z", "hubId": "da1a6095-8573-4382-9b6c-d308a44abc3e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0df93c623fe140051a329eb508a64b098d127a63", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/da4b415c-868c-4057-9ceb-8dc093a069d5_chatsum.json b/server/src/data/split/da4b415c-868c-4057-9ceb-8dc093a069d5_chatsum.json index a2b3418..ddb8516 100644 --- a/server/src/data/split/da4b415c-868c-4057-9ceb-8dc093a069d5_chatsum.json +++ b/server/src/data/split/da4b415c-868c-4057-9ceb-8dc093a069d5_chatsum.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 937, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2024-12-04T02:58:15Z", "hubId": "da4b415c-868c-4057-9ceb-8dc093a069d5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "chatmcp", + "githubLatestCommit": "5bf9298aa095da8b4af277137f48cc468f736797", + "githubForks": 89 } \ No newline at end of file diff --git a/server/src/data/split/da7110f3-94a7-4772-93c7-a6574365a3ca_tripadvisorvacationplanner.json b/server/src/data/split/da7110f3-94a7-4772-93c7-a6574365a3ca_tripadvisorvacationplanner.json index aa6197e..c9ab1da 100644 --- a/server/src/data/split/da7110f3-94a7-4772-93c7-a6574365a3ca_tripadvisorvacationplanner.json +++ b/server/src/data/split/da7110f3-94a7-4772-93c7-a6574365a3ca_tripadvisorvacationplanner.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-04-22T13:49:14Z", "hubId": "da7110f3-94a7-4772-93c7-a6574365a3ca", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b3b08e8824f873c7e7fcb12f387dd511eab0bdf0", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/da7a626d-4211-43a3-a058-26079058fe8a_yahoofinance.json b/server/src/data/split/da7a626d-4211-43a3-a058-26079058fe8a_yahoofinance.json index 75628d8..72412f3 100644 --- a/server/src/data/split/da7a626d-4211-43a3-a058-26079058fe8a_yahoofinance.json +++ b/server/src/data/split/da7a626d-4211-43a3-a058-26079058fe8a_yahoofinance.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-14T04:51:06Z", "hubId": "da7a626d-4211-43a3-a058-26079058fe8a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "98509aecf0420861f9f0ee5d0e4308b7c5e874ef", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/da9cec76-b5c0-4234-9156-155b9880197d_markdowndownloader.json b/server/src/data/split/da9cec76-b5c0-4234-9156-155b9880197d_markdowndownloader.json index db72b15..629b246 100644 --- a/server/src/data/split/da9cec76-b5c0-4234-9156-155b9880197d_markdowndownloader.json +++ b/server/src/data/split/da9cec76-b5c0-4234-9156-155b9880197d_markdowndownloader.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 22, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-04-02T15:37:00Z", "hubId": "da9cec76-b5c0-4234-9156-155b9880197d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e4bb5e66ddf8345f2a3859aabf9a20610c306ace", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dab4af92-9d74-4180-9a8d-74491610d027_azuredevops.json b/server/src/data/split/dab4af92-9d74-4180-9a8d-74491610d027_azuredevops.json index 7e8de5f..4d7e9ff 100644 --- a/server/src/data/split/dab4af92-9d74-4180-9a8d-74491610d027_azuredevops.json +++ b/server/src/data/split/dab4af92-9d74-4180-9a8d-74491610d027_azuredevops.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-02-15T15:52:09Z", "hubId": "dab4af92-9d74-4180-9a8d-74491610d027", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "90e841ec1d0361f19fc4902f561491fbe2b23266", + "githubForks": 10, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dad82b9d-74e5-4661-a9e1-cbe329119131_markitdown.json b/server/src/data/split/dad82b9d-74e5-4661-a9e1-cbe329119131_markitdown.json index 4d0b595..bf429e3 100644 --- a/server/src/data/split/dad82b9d-74e5-4661-a9e1-cbe329119131_markitdown.json +++ b/server/src/data/split/dad82b9d-74e5-4661-a9e1-cbe329119131_markitdown.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 453, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T23:44:58Z", "hubId": "dad82b9d-74e5-4661-a9e1-cbe329119131", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Klavis-AI", + "githubLatestCommit": "d9f0d6f7dcb9e6fc90222390f815618228ef532e", + "githubForks": 83, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/db38645f-d593-42e8-a4c8-4e770c4500f9_llmling.json b/server/src/data/split/db38645f-d593-42e8-a4c8-4e770c4500f9_llmling.json index 375c06d..27f717d 100644 --- a/server/src/data/split/db38645f-d593-42e8-a4c8-4e770c4500f9_llmling.json +++ b/server/src/data/split/db38645f-d593-42e8-a4c8-4e770c4500f9_llmling.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-27T08:11:21Z", "hubId": "db38645f-d593-42e8-a4c8-4e770c4500f9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "586d01f13101759fcf2797c75dacffa76076db40", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/db606467-1414-4287-86c9-81c11a87758f_arxiv.json b/server/src/data/split/db606467-1414-4287-86c9-81c11a87758f_arxiv.json index 5e0dad4..599b399 100644 --- a/server/src/data/split/db606467-1414-4287-86c9-81c11a87758f_arxiv.json +++ b/server/src/data/split/db606467-1414-4287-86c9-81c11a87758f_arxiv.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1007, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-22T11:22:36Z", "hubId": "db606467-1414-4287-86c9-81c11a87758f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c29796ad30c365e091e776adbef8689ae3471b33", + "githubForks": 55, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/db6fbd68-5c48-49b3-87a1-ed2681e07448_sqlite.json b/server/src/data/split/db6fbd68-5c48-49b3-87a1-ed2681e07448_sqlite.json index 6be3979..f6e386f 100644 --- a/server/src/data/split/db6fbd68-5c48-49b3-87a1-ed2681e07448_sqlite.json +++ b/server/src/data/split/db6fbd68-5c48-49b3-87a1-ed2681e07448_sqlite.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42075, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "db6fbd68-5c48-49b3-87a1-ed2681e07448", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/db741688-46f2-4b6f-8fef-98475acf5a10_discord.json b/server/src/data/split/db741688-46f2-4b6f-8fef-98475acf5a10_discord.json index d5b67e2..4b48fb3 100644 --- a/server/src/data/split/db741688-46f2-4b6f-8fef-98475acf5a10_discord.json +++ b/server/src/data/split/db741688-46f2-4b6f-8fef-98475acf5a10_discord.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 6, + "githubStars": 8, "downloadCount": 568, "createdAt": "2025-02-19T01:25:52.857709Z", - "updatedAt": "2025-02-19T01:25:52.857709Z", + "updatedAt": "2025-02-19T01:06:27Z", "hubId": "db741688-46f2-4b6f-8fef-98475acf5a10", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "400de75cb3b41c5adfe2488eab6000da29c98158", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/db80e2e2-59f2-41b8-831d-bc5b405bdc4f_daytonapythoninterpreter.json b/server/src/data/split/db80e2e2-59f2-41b8-831d-bc5b405bdc4f_daytonapythoninterpreter.json index c23d86e..de9cb8e 100644 --- a/server/src/data/split/db80e2e2-59f2-41b8-831d-bc5b405bdc4f_daytonapythoninterpreter.json +++ b/server/src/data/split/db80e2e2-59f2-41b8-831d-bc5b405bdc4f_daytonapythoninterpreter.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-25T07:06:30Z", "hubId": "db80e2e2-59f2-41b8-831d-bc5b405bdc4f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "966900be4c13b3f03f07639f65a14418f3f19576", + "githubForks": 3, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/db865e7a-2e04-4979-9e6b-5cca39f05ed6_documentreader.json b/server/src/data/split/db865e7a-2e04-4979-9e6b-5cca39f05ed6_documentreader.json index cb42281..6f572e0 100644 --- a/server/src/data/split/db865e7a-2e04-4979-9e6b-5cca39f05ed6_documentreader.json +++ b/server/src/data/split/db865e7a-2e04-4979-9e6b-5cca39f05ed6_documentreader.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-08T21:32:41Z", "hubId": "db865e7a-2e04-4979-9e6b-5cca39f05ed6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cc2f58f136521c18cbdcd838e67ea2a665930440", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/db9ea614-b916-45c1-a467-b469bbe5448f_superwindowscli.json b/server/src/data/split/db9ea614-b916-45c1-a467-b469bbe5448f_superwindowscli.json index 7a7b31e..8590648 100644 --- a/server/src/data/split/db9ea614-b916-45c1-a467-b469bbe5448f_superwindowscli.json +++ b/server/src/data/split/db9ea614-b916-45c1-a467-b469bbe5448f_superwindowscli.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-19T18:24:48Z", "hubId": "db9ea614-b916-45c1-a467-b469bbe5448f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "adf15d1cd5055d1c10d971862157258c78e3bc6e", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dbbef364-cb39-4a9e-8912-29088a8c5e31_arizephoenix.json b/server/src/data/split/dbbef364-cb39-4a9e-8912-29088a8c5e31_arizephoenix.json index 97a7a75..96fff3c 100644 --- a/server/src/data/split/dbbef364-cb39-4a9e-8912-29088a8c5e31_arizephoenix.json +++ b/server/src/data/split/dbbef364-cb39-4a9e-8912-29088a8c5e31_arizephoenix.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5500, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T23:14:26Z", "hubId": "dbbef364-cb39-4a9e-8912-29088a8c5e31", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "Arize-ai", + "githubLatestCommit": "f882faf506e2109f810d89bd9ac616ff406ce049", + "githubForks": 408, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/dbc925c9-2cc0-4cbf-af8e-c48d0f797dcc_steam.json b/server/src/data/split/dbc925c9-2cc0-4cbf-af8e-c48d0f797dcc_steam.json index 4858ad0..0283b77 100644 --- a/server/src/data/split/dbc925c9-2cc0-4cbf-af8e-c48d0f797dcc_steam.json +++ b/server/src/data/split/dbc925c9-2cc0-4cbf-af8e-c48d0f797dcc_steam.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-03T21:08:12Z", "hubId": "dbc925c9-2cc0-4cbf-af8e-c48d0f797dcc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ca3c65712d0415ab1b1c275715ca1ebdfcb1e7e2", + "githubForks": 0, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/dbdf67b1-cf88-418c-9e41-d9e06abec450_batchit.json b/server/src/data/split/dbdf67b1-cf88-418c-9e41-d9e06abec450_batchit.json index e9d87de..e2e66e8 100644 --- a/server/src/data/split/dbdf67b1-cf88-418c-9e41-d9e06abec450_batchit.json +++ b/server/src/data/split/dbdf67b1-cf88-418c-9e41-d9e06abec450_batchit.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-01-28T03:40:57Z", "hubId": "dbdf67b1-cf88-418c-9e41-d9e06abec450", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5870243813342a77c96c478468e821d4260d470e", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/dbe67b48-95dd-4c68-a5f8-f7a1bc8858e3_mcpet.json b/server/src/data/split/dbe67b48-95dd-4c68-a5f8-f7a1bc8858e3_mcpet.json index d32dbea..8cd8e85 100644 --- a/server/src/data/split/dbe67b48-95dd-4c68-a5f8-f7a1bc8858e3_mcpet.json +++ b/server/src/data/split/dbe67b48-95dd-4c68-a5f8-f7a1bc8858e3_mcpet.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-19T23:25:57Z", "hubId": "dbe67b48-95dd-4c68-a5f8-f7a1bc8858e3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "95439d4eab8d2225701a9d3d3f3ab7b0c628cbcb", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dc113350-35c2-443d-99ac-199624b7dd8f_typesense.json b/server/src/data/split/dc113350-35c2-443d-99ac-199624b7dd8f_typesense.json index bec8620..2b491b3 100644 --- a/server/src/data/split/dc113350-35c2-443d-99ac-199624b7dd8f_typesense.json +++ b/server/src/data/split/dc113350-35c2-443d-99ac-199624b7dd8f_typesense.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-24T10:22:51Z", "hubId": "dc113350-35c2-443d-99ac-199624b7dd8f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e322570f6c564adb47892df54c6d6f85b835035c", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dc41c921-5ec6-41ef-b3b5-c4a3d6b67ddd_qdrantknowledgegraph.json b/server/src/data/split/dc41c921-5ec6-41ef-b3b5-c4a3d6b67ddd_qdrantknowledgegraph.json index 36d0d9a..4f4f985 100644 --- a/server/src/data/split/dc41c921-5ec6-41ef-b3b5-c4a3d6b67ddd_qdrantknowledgegraph.json +++ b/server/src/data/split/dc41c921-5ec6-41ef-b3b5-c4a3d6b67ddd_qdrantknowledgegraph.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-02T19:10:44Z", "hubId": "dc41c921-5ec6-41ef-b3b5-c4a3d6b67ddd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8d37d65ee9e85916ae386ff87789f93488140e80", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/dc447317-e595-4eb7-998b-070de9eabc96_llmstxt.json b/server/src/data/split/dc447317-e595-4eb7-998b-070de9eabc96_llmstxt.json index 0d9da98..f773eed 100644 --- a/server/src/data/split/dc447317-e595-4eb7-998b-070de9eabc96_llmstxt.json +++ b/server/src/data/split/dc447317-e595-4eb7-998b-070de9eabc96_llmstxt.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-09T16:09:11Z", "hubId": "dc447317-e595-4eb7-998b-070de9eabc96", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "26cc2752f7439cbb7c42379ba72283d0cb37c9cd", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dc6a3aae-aba8-491e-afe5-589c27914bbc_stabilityai.json b/server/src/data/split/dc6a3aae-aba8-491e-afe5-589c27914bbc_stabilityai.json index ffc5e56..b102194 100644 --- a/server/src/data/split/dc6a3aae-aba8-491e-afe5-589c27914bbc_stabilityai.json +++ b/server/src/data/split/dc6a3aae-aba8-491e-afe5-589c27914bbc_stabilityai.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 56, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-23T15:18:18Z", "hubId": "dc6a3aae-aba8-491e-afe5-589c27914bbc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6a12dd79f82329ae2d3c14b06c9a3a4d0a627817", + "githubForks": 17, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dc77b54e-6960-4af4-b8c8-0db2f0e32a2b_duckduckgosearch.json b/server/src/data/split/dc77b54e-6960-4af4-b8c8-0db2f0e32a2b_duckduckgosearch.json index df49219..23f20c8 100644 --- a/server/src/data/split/dc77b54e-6960-4af4-b8c8-0db2f0e32a2b_duckduckgosearch.json +++ b/server/src/data/split/dc77b54e-6960-4af4-b8c8-0db2f0e32a2b_duckduckgosearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-05T11:40:52Z", "hubId": "dc77b54e-6960-4af4-b8c8-0db2f0e32a2b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "674afe1636f638dc599284ab9006bdbb3577124f", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dcb0fa8a-134d-477a-83fd-8025a795a755_mcpproxy.json b/server/src/data/split/dcb0fa8a-134d-477a-83fd-8025a795a755_mcpproxy.json index a970ce4..8b3132f 100644 --- a/server/src/data/split/dcb0fa8a-134d-477a-83fd-8025a795a755_mcpproxy.json +++ b/server/src/data/split/dcb0fa8a-134d-477a-83fd-8025a795a755_mcpproxy.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 665, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-13T10:16:01Z", "hubId": "dcb0fa8a-134d-477a-83fd-8025a795a755", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "sparfenyuk", + "githubLatestCommit": "e9fe649fe89234e90d25c63031cc3269fb3961fd", + "githubForks": 79, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dce72fbf-a653-4a50-b846-5dfe11617a5b_proxmoxmanager.json b/server/src/data/split/dce72fbf-a653-4a50-b846-5dfe11617a5b_proxmoxmanager.json index d7dc343..ac7ff08 100644 --- a/server/src/data/split/dce72fbf-a653-4a50-b846-5dfe11617a5b_proxmoxmanager.json +++ b/server/src/data/split/dce72fbf-a653-4a50-b846-5dfe11617a5b_proxmoxmanager.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 61, + "githubStars": 92, "downloadCount": 848, "createdAt": "2025-02-19T07:28:09.637633Z", - "updatedAt": "2025-02-19T07:28:09.637633Z", + "updatedAt": "2025-02-19T20:16:12Z", "hubId": "dce72fbf-a653-4a50-b846-5dfe11617a5b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1452cdd5a2d8b456a82a13aeae26c60daff9d6ca", + "githubForks": 15, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dd030288-ec72-4b20-9804-c07c51cc2e9e_langfusepromptmanagement.json b/server/src/data/split/dd030288-ec72-4b20-9804-c07c51cc2e9e_langfusepromptmanagement.json index 8c0b38f..86e1689 100644 --- a/server/src/data/split/dd030288-ec72-4b20-9804-c07c51cc2e9e_langfusepromptmanagement.json +++ b/server/src/data/split/dd030288-ec72-4b20-9804-c07c51cc2e9e_langfusepromptmanagement.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 65, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-02-15T23:13:01Z", "hubId": "dd030288-ec72-4b20-9804-c07c51cc2e9e", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "a534b5a995d50c21ba45f14419246ef64d3ca6f4", + "githubForks": 16, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dd1db1a7-f94c-4ac7-bf8f-5592c66ab9cf_clickup.json b/server/src/data/split/dd1db1a7-f94c-4ac7-bf8f-5592c66ab9cf_clickup.json index 851db5c..19b671f 100644 --- a/server/src/data/split/dd1db1a7-f94c-4ac7-bf8f-5592c66ab9cf_clickup.json +++ b/server/src/data/split/dd1db1a7-f94c-4ac7-bf8f-5592c66ab9cf_clickup.json @@ -2,7 +2,7 @@ "mcpId": "github.com/TaazKareem/clickup-mcp-server", "githubUrl": "https://github.com/TaazKareem/clickup-mcp-server", "name": "ClickUp", - "author": "TaazKareem", + "author": "taazkareem", "description": "MCP server for ClickUp task management, supporting task creation, updates, bulk operations, and markdown descriptions.", "codiconIcon": "clickup", "logoUrl": "", @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 97, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-24T21:33:47Z", "hubId": "dd1db1a7-f94c-4ac7-bf8f-5592c66ab9cf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "291a9865026ad4010a24460afbfae6063d3cb5a7", + "githubForks": 33, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dd453b2d-1f34-4f0b-9c6e-84d778a67fa8_circleci.json b/server/src/data/split/dd453b2d-1f34-4f0b-9c6e-84d778a67fa8_circleci.json index 855e58e..a11a479 100644 --- a/server/src/data/split/dd453b2d-1f34-4f0b-9c6e-84d778a67fa8_circleci.json +++ b/server/src/data/split/dd453b2d-1f34-4f0b-9c6e-84d778a67fa8_circleci.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-21T17:34:09Z", "hubId": "dd453b2d-1f34-4f0b-9c6e-84d778a67fa8", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "CircleCI-Public", + "githubLatestCommit": "2e3c25438f7eb1a2e5165046c4fbfafd536175d5", + "githubForks": 7, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/dd5825c5-94f1-4ca8-9a6b-ec7428587863_anki.json b/server/src/data/split/dd5825c5-94f1-4ca8-9a6b-ec7428587863_anki.json index 397e404..ba30e64 100644 --- a/server/src/data/split/dd5825c5-94f1-4ca8-9a6b-ec7428587863_anki.json +++ b/server/src/data/split/dd5825c5-94f1-4ca8-9a6b-ec7428587863_anki.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 40, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-03-19T18:49:41Z", "hubId": "dd5825c5-94f1-4ca8-9a6b-ec7428587863", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "11075aa080a3f660bd19427e75c9be7b2afd800d", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/dd58309c-abe3-4418-a38b-d4c34effaf82_couchdb.json b/server/src/data/split/dd58309c-abe3-4418-a38b-d4c34effaf82_couchdb.json index 38699d6..3795903 100644 --- a/server/src/data/split/dd58309c-abe3-4418-a38b-d4c34effaf82_couchdb.json +++ b/server/src/data/split/dd58309c-abe3-4418-a38b-d4c34effaf82_couchdb.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-01T22:50:01Z", "hubId": "dd58309c-abe3-4418-a38b-d4c34effaf82", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "04c4e0efa0fc9873635a481ff4d15b4e2e339972", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/dd9c4bb0-f212-492b-8ea1-9c2906abd91d_linear.json b/server/src/data/split/dd9c4bb0-f212-492b-8ea1-9c2906abd91d_linear.json index 7b61ed9..7e27fe3 100644 --- a/server/src/data/split/dd9c4bb0-f212-492b-8ea1-9c2906abd91d_linear.json +++ b/server/src/data/split/dd9c4bb0-f212-492b-8ea1-9c2906abd91d_linear.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-15T20:16:05Z", "hubId": "dd9c4bb0-f212-492b-8ea1-9c2906abd91d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5c649b508790513848aa05a79f2b98f839b9a9eb", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/ddf9f0ab-858e-4bdf-ac55-0b6d97844e85_azuredevops.json b/server/src/data/split/ddf9f0ab-858e-4bdf-ac55-0b6d97844e85_azuredevops.json index e6ac136..87fc286 100644 --- a/server/src/data/split/ddf9f0ab-858e-4bdf-ac55-0b6d97844e85_azuredevops.json +++ b/server/src/data/split/ddf9f0ab-858e-4bdf-ac55-0b6d97844e85_azuredevops.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 102, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-28T13:16:26Z", "hubId": "ddf9f0ab-858e-4bdf-ac55-0b6d97844e85", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fc8eff5318f8eb95e47976883fe87fa865c221f1", + "githubForks": 27, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/de8ea677-78dd-4be7-87ad-3c3fa6c6788c_litellm.json b/server/src/data/split/de8ea677-78dd-4be7-87ad-3c3fa6c6788c_litellm.json index 7e4faa4..f9e4ee0 100644 --- a/server/src/data/split/de8ea677-78dd-4be7-87ad-3c3fa6c6788c_litellm.json +++ b/server/src/data/split/de8ea677-78dd-4be7-87ad-3c3fa6c6788c_litellm.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-09T20:13:47Z", "hubId": "de8ea677-78dd-4be7-87ad-3c3fa6c6788c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b4c8ddc4d811b1d4d73e515dd57f7661e1d12dca", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/dec5bc5c-5848-4662-9992-b690ff3c48b1_browseruse.json b/server/src/data/split/dec5bc5c-5848-4662-9992-b690ff3c48b1_browseruse.json index 5971941..1f96c8d 100644 --- a/server/src/data/split/dec5bc5c-5848-4662-9992-b690ff3c48b1_browseruse.json +++ b/server/src/data/split/dec5bc5c-5848-4662-9992-b690ff3c48b1_browseruse.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 468, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-11T13:05:35Z", "hubId": "dec5bc5c-5848-4662-9992-b690ff3c48b1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7ce7b104bab841435d1200afc94520ba011fde54", + "githubForks": 65, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/decbe259-8b2b-4157-aa11-ec0c33109266_arxivresearch.json b/server/src/data/split/decbe259-8b2b-4157-aa11-ec0c33109266_arxivresearch.json index 20bf957..5904097 100644 --- a/server/src/data/split/decbe259-8b2b-4157-aa11-ec0c33109266_arxivresearch.json +++ b/server/src/data/split/decbe259-8b2b-4157-aa11-ec0c33109266_arxivresearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 75, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-01-29T13:07:56Z", "hubId": "decbe259-8b2b-4157-aa11-ec0c33109266", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "db05434394510b31cf60b621e782d4b0e8a71306", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/df4c318c-b57d-4158-8cee-ef97164f2979_llmcodecontext.json b/server/src/data/split/df4c318c-b57d-4158-8cee-ef97164f2979_llmcodecontext.json index 49f2c64..22e45ff 100644 --- a/server/src/data/split/df4c318c-b57d-4158-8cee-ef97164f2979_llmcodecontext.json +++ b/server/src/data/split/df4c318c-b57d-4158-8cee-ef97164f2979_llmcodecontext.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 201, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-29T04:37:54Z", "hubId": "df4c318c-b57d-4158-8cee-ef97164f2979", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d34ca4f9b560752a7435399d52d09337d45f86c5", + "githubForks": 15, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/dfa3e51c-2a6a-4510-befe-410ad8589084_mysqldatabase.json b/server/src/data/split/dfa3e51c-2a6a-4510-befe-410ad8589084_mysqldatabase.json index 7f6b969..b3bc2cb 100644 --- a/server/src/data/split/dfa3e51c-2a6a-4510-befe-410ad8589084_mysqldatabase.json +++ b/server/src/data/split/dfa3e51c-2a6a-4510-befe-410ad8589084_mysqldatabase.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 22, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-03-06T14:22:26Z", "hubId": "dfa3e51c-2a6a-4510-befe-410ad8589084", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a4f391accee40fc987d5590fee83b93d1a514541", + "githubForks": 7 } \ No newline at end of file diff --git a/server/src/data/split/dff73005-c389-43a4-a862-6b155adc0232_trello.json b/server/src/data/split/dff73005-c389-43a4-a862-6b155adc0232_trello.json index 20a6a39..0bb64a8 100644 --- a/server/src/data/split/dff73005-c389-43a4-a862-6b155adc0232_trello.json +++ b/server/src/data/split/dff73005-c389-43a4-a862-6b155adc0232_trello.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 29, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-04-20T16:29:20Z", "hubId": "dff73005-c389-43a4-a862-6b155adc0232", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7371ee17745df3fecd3b1a56e7eb84a148676efb", + "githubForks": 13, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e007d670-0778-4411-af39-8d12dad0a78d_firecrawl.json b/server/src/data/split/e007d670-0778-4411-af39-8d12dad0a78d_firecrawl.json index 149fec9..b29ad9b 100644 --- a/server/src/data/split/e007d670-0778-4411-af39-8d12dad0a78d_firecrawl.json +++ b/server/src/data/split/e007d670-0778-4411-af39-8d12dad0a78d_firecrawl.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-26T07:40:11Z", "hubId": "e007d670-0778-4411-af39-8d12dad0a78d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0fb75773b663abf36981c015f459f40da5248729", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/e01b9f23-3007-4367-9eaf-2f53398d9a35_squaremcpserver.json b/server/src/data/split/e01b9f23-3007-4367-9eaf-2f53398d9a35_squaremcpserver.json index cb5efa9..ecd1ae7 100644 --- a/server/src/data/split/e01b9f23-3007-4367-9eaf-2f53398d9a35_squaremcpserver.json +++ b/server/src/data/split/e01b9f23-3007-4367-9eaf-2f53398d9a35_squaremcpserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-30T16:46:07.393Z", - "updatedAt": "2025-03-30T16:46:07.393Z", + "updatedAt": "2025-04-28T18:16:10Z", "hubId": "e01b9f23-3007-4367-9eaf-2f53398d9a35", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1e04ab99f1159254fa1c16c6d386875a92e7c470", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e02c41c1-281c-4e92-a4cc-41493fc4106f_markdowntopdfconverter.json b/server/src/data/split/e02c41c1-281c-4e92-a4cc-41493fc4106f_markdowntopdfconverter.json index 0fa3fbc..6cbbf67 100644 --- a/server/src/data/split/e02c41c1-281c-4e92-a4cc-41493fc4106f_markdowntopdfconverter.json +++ b/server/src/data/split/e02c41c1-281c-4e92-a4cc-41493fc4106f_markdowntopdfconverter.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-19T09:35:11Z", "hubId": "e02c41c1-281c-4e92-a4cc-41493fc4106f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7752e06f8d2c2625aff7b5245b3ca954280aacaa", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/e074c68c-d4e9-4f53-aaec-6905a576effb_replicate.json b/server/src/data/split/e074c68c-d4e9-4f53-aaec-6905a576effb_replicate.json index f37e75a..57ad30f 100644 --- a/server/src/data/split/e074c68c-d4e9-4f53-aaec-6905a576effb_replicate.json +++ b/server/src/data/split/e074c68c-d4e9-4f53-aaec-6905a576effb_replicate.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-02-28T17:47:21Z", "hubId": "e074c68c-d4e9-4f53-aaec-6905a576effb", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "568024cbab6f7da22a85d7bd5787f2e835e4e54a", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/e09d5859-7661-4253-8eb3-5fe3cddd2075_ticktick.json b/server/src/data/split/e09d5859-7661-4253-8eb3-5fe3cddd2075_ticktick.json index 4147fba..c6308a4 100644 --- a/server/src/data/split/e09d5859-7661-4253-8eb3-5fe3cddd2075_ticktick.json +++ b/server/src/data/split/e09d5859-7661-4253-8eb3-5fe3cddd2075_ticktick.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-13T17:52:19Z", "hubId": "e09d5859-7661-4253-8eb3-5fe3cddd2075", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "alexarevalo9", + "githubLatestCommit": "158f245578f4e98fcb3a5864e744503a764fc3da", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/e0a87708-c187-43e2-8ead-9243fc3f95b4_jsoncanvas.json b/server/src/data/split/e0a87708-c187-43e2-8ead-9243fc3f95b4_jsoncanvas.json index 4dce6b7..154c838 100644 --- a/server/src/data/split/e0a87708-c187-43e2-8ead-9243fc3f95b4_jsoncanvas.json +++ b/server/src/data/split/e0a87708-c187-43e2-8ead-9243fc3f95b4_jsoncanvas.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-03T23:18:16Z", "hubId": "e0a87708-c187-43e2-8ead-9243fc3f95b4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "38bf895240c2157c40aec46c324f646a7432e974", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e0d27843-da8c-4b2d-9570-bcd2837389dd_openstreetmap.json b/server/src/data/split/e0d27843-da8c-4b2d-9570-bcd2837389dd_openstreetmap.json index 5a68828..f4283b0 100644 --- a/server/src/data/split/e0d27843-da8c-4b2d-9570-bcd2837389dd_openstreetmap.json +++ b/server/src/data/split/e0d27843-da8c-4b2d-9570-bcd2837389dd_openstreetmap.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-13T23:01:01Z", "hubId": "e0d27843-da8c-4b2d-9570-bcd2837389dd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c8b97666b4dd3fb59887059f5c7d779ad2a47d25", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/e0d5171f-b2a9-483f-a729-84f9ee56c39a_branchthinking.json b/server/src/data/split/e0d5171f-b2a9-483f-a729-84f9ee56c39a_branchthinking.json index 18d2448..4c5eaef 100644 --- a/server/src/data/split/e0d5171f-b2a9-483f-a729-84f9ee56c39a_branchthinking.json +++ b/server/src/data/split/e0d5171f-b2a9-483f-a729-84f9ee56c39a_branchthinking.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 25, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-01-27T15:01:36Z", "hubId": "e0d5171f-b2a9-483f-a729-84f9ee56c39a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fa58742b6dde066f73a057fddc999be1863616de", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e0d5184c-b3ac-4fb8-87ca-3da544fa5076_appleshortcutsmacos.json b/server/src/data/split/e0d5184c-b3ac-4fb8-87ca-3da544fa5076_appleshortcutsmacos.json index 5e275b3..d291654 100644 --- a/server/src/data/split/e0d5184c-b3ac-4fb8-87ca-3da544fa5076_appleshortcutsmacos.json +++ b/server/src/data/split/e0d5184c-b3ac-4fb8-87ca-3da544fa5076_appleshortcutsmacos.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 145, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2024-12-22T03:27:15Z", "hubId": "e0d5184c-b3ac-4fb8-87ca-3da544fa5076", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "910a56d4965c1a39d4afb9890f21580f02f3f71d", + "githubForks": 11, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e11730eb-7db5-45f0-857a-29d76a36a59c_datadog.json b/server/src/data/split/e11730eb-7db5-45f0-857a-29d76a36a59c_datadog.json index 8852365..2d96360 100644 --- a/server/src/data/split/e11730eb-7db5-45f0-857a-29d76a36a59c_datadog.json +++ b/server/src/data/split/e11730eb-7db5-45f0-857a-29d76a36a59c_datadog.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-23T06:16:06Z", "hubId": "e11730eb-7db5-45f0-857a-29d76a36a59c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "GeLi2001", + "githubLatestCommit": "ff6ef110960e7f38ec43ec7c034a47db8557afa5", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e146bcd2-2317-46b5-b03e-5d7e27b60ccf_projectorchestrator.json b/server/src/data/split/e146bcd2-2317-46b5-b03e-5d7e27b60ccf_projectorchestrator.json index 13ace08..4f7a39b 100644 --- a/server/src/data/split/e146bcd2-2317-46b5-b03e-5d7e27b60ccf_projectorchestrator.json +++ b/server/src/data/split/e146bcd2-2317-46b5-b03e-5d7e27b60ccf_projectorchestrator.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-24T13:25:48Z", "hubId": "e146bcd2-2317-46b5-b03e-5d7e27b60ccf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "79e8058d24b9e9989c4cc9dbe3497d7a37b45f19", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e15a945a-8350-4fc4-90ab-c1c13eb2b95f_kongkonnect.json b/server/src/data/split/e15a945a-8350-4fc4-90ab-c1c13eb2b95f_kongkonnect.json index 4595a53..d5fae46 100644 --- a/server/src/data/split/e15a945a-8350-4fc4-90ab-c1c13eb2b95f_kongkonnect.json +++ b/server/src/data/split/e15a945a-8350-4fc4-90ab-c1c13eb2b95f_kongkonnect.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-08T23:00:34Z", "hubId": "e15a945a-8350-4fc4-90ab-c1c13eb2b95f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Kong", + "githubLatestCommit": "28f5c76d86427628299ce9d3eefe7c7ce4f7d617", + "githubForks": 8, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e17f268d-833a-4266-a062-c4629d22d6cd_wcgw.json b/server/src/data/split/e17f268d-833a-4266-a062-c4629d22d6cd_wcgw.json index 0479830..d74575e 100644 --- a/server/src/data/split/e17f268d-833a-4266-a062-c4629d22d6cd_wcgw.json +++ b/server/src/data/split/e17f268d-833a-4266-a062-c4629d22d6cd_wcgw.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 433, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-28T17:11:18Z", "hubId": "e17f268d-833a-4266-a062-c4629d22d6cd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "248c7cd9e1c0031ff96ccda9d89a6ce51e93c549", + "githubForks": 40, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e18641a6-51a0-4de6-b047-508dde192611_honeycomb.json b/server/src/data/split/e18641a6-51a0-4de6-b047-508dde192611_honeycomb.json index d241a34..be4688e 100644 --- a/server/src/data/split/e18641a6-51a0-4de6-b047-508dde192611_honeycomb.json +++ b/server/src/data/split/e18641a6-51a0-4de6-b047-508dde192611_honeycomb.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 18, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-25T20:39:03Z", "hubId": "e18641a6-51a0-4de6-b047-508dde192611", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7e4afc49a29314dc080259cbdd64377b3af5684d", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e188d192-fe64-4c5d-ba03-75ad75752abe_chargebee.json b/server/src/data/split/e188d192-fe64-4c5d-ba03-75ad75752abe_chargebee.json index 3cd3d31..6388778 100644 --- a/server/src/data/split/e188d192-fe64-4c5d-ba03-75ad75752abe_chargebee.json +++ b/server/src/data/split/e188d192-fe64-4c5d-ba03-75ad75752abe_chargebee.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-25T07:02:28.928549+00:00", - "updatedAt": "2025-03-25T07:02:28.928549+00:00", + "updatedAt": "2025-04-07T05:58:40Z", "hubId": "e188d192-fe64-4c5d-ba03-75ad75752abe", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "d67d82024c9817eb9f0902f56b4b9b43e08d03b1", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e1d73e9e-fac4-4844-bfc1-d30ebf40343f_zenml.json b/server/src/data/split/e1d73e9e-fac4-4844-bfc1-d30ebf40343f_zenml.json index 856d76c..d855ba5 100644 --- a/server/src/data/split/e1d73e9e-fac4-4844-bfc1-d30ebf40343f_zenml.json +++ b/server/src/data/split/e1d73e9e-fac4-4844-bfc1-d30ebf40343f_zenml.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-24T14:54:58Z", "hubId": "e1d73e9e-fac4-4844-bfc1-d30ebf40343f", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "zenml-io", + "githubLatestCommit": "3caa4b1b5c50d898f9c07602eda7c602afd7bc96", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/e1d80421-ef38-45d5-823e-f63cc741a25d_denoplaywright.json b/server/src/data/split/e1d80421-ef38-45d5-823e-f63cc741a25d_denoplaywright.json index 6e670cd..9b9a5b0 100644 --- a/server/src/data/split/e1d80421-ef38-45d5-823e-f63cc741a25d_denoplaywright.json +++ b/server/src/data/split/e1d80421-ef38-45d5-823e-f63cc741a25d_denoplaywright.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 11, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2024-12-02T05:45:11Z", "hubId": "e1d80421-ef38-45d5-823e-f63cc741a25d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de115d955b07bc671e2e45b0585a26d5ca7b3440", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e1e67977-b20a-4207-a5ab-e308b03f5cb7_knowledgebaseretrieval.json b/server/src/data/split/e1e67977-b20a-4207-a5ab-e308b03f5cb7_knowledgebaseretrieval.json index dda2177..d016fa5 100644 --- a/server/src/data/split/e1e67977-b20a-4207-a5ab-e308b03f5cb7_knowledgebaseretrieval.json +++ b/server/src/data/split/e1e67977-b20a-4207-a5ab-e308b03f5cb7_knowledgebaseretrieval.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-25T23:50:36Z", "hubId": "e1e67977-b20a-4207-a5ab-e308b03f5cb7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ea407356f0c3f780b2bdef56bc43121d6b2f6d8b", + "githubForks": 2, + "licenseType": "Unlicense" } \ No newline at end of file diff --git a/server/src/data/split/e1ebba94-c874-44da-b2c6-35a5242a165e_cli.json b/server/src/data/split/e1ebba94-c874-44da-b2c6-35a5242a165e_cli.json index b105a53..97f8e46 100644 --- a/server/src/data/split/e1ebba94-c874-44da-b2c6-35a5242a165e_cli.json +++ b/server/src/data/split/e1ebba94-c874-44da-b2c6-35a5242a165e_cli.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 130, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-17T08:35:28Z", "hubId": "e1ebba94-c874-44da-b2c6-35a5242a165e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ec6b5689ed67c225fcd0055526e3af877ce12d4b", + "githubForks": 23, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e206a30e-aaf0-4024-8fc8-6b40618aad90_googleworkspace.json b/server/src/data/split/e206a30e-aaf0-4024-8fc8-6b40618aad90_googleworkspace.json index ea97628..b2ff5e3 100644 --- a/server/src/data/split/e206a30e-aaf0-4024-8fc8-6b40618aad90_googleworkspace.json +++ b/server/src/data/split/e206a30e-aaf0-4024-8fc8-6b40618aad90_googleworkspace.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-01T13:44:07Z", "hubId": "e206a30e-aaf0-4024-8fc8-6b40618aad90", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cbabb26e7232c1308e36fae69a7b30fe307fcfb6", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e28836c6-7cd5-4467-ae3a-a2f831112fac_rememberizer.json b/server/src/data/split/e28836c6-7cd5-4467-ae3a-a2f831112fac_rememberizer.json index f45878c..e778728 100644 --- a/server/src/data/split/e28836c6-7cd5-4467-ae3a-a2f831112fac_rememberizer.json +++ b/server/src/data/split/e28836c6-7cd5-4467-ae3a-a2f831112fac_rememberizer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-18T10:09:45Z", "hubId": "e28836c6-7cd5-4467-ae3a-a2f831112fac", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "361ae38ac4caa2f2941a1b8a2350206568df5bbf", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e2a37fe8-6b81-4065-9a04-cb8164edf295_duckduckgosearch.json b/server/src/data/split/e2a37fe8-6b81-4065-9a04-cb8164edf295_duckduckgosearch.json index f6fad33..5a9dc0c 100644 --- a/server/src/data/split/e2a37fe8-6b81-4065-9a04-cb8164edf295_duckduckgosearch.json +++ b/server/src/data/split/e2a37fe8-6b81-4065-9a04-cb8164edf295_duckduckgosearch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-13T02:25:31Z", "hubId": "e2a37fe8-6b81-4065-9a04-cb8164edf295", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8b60e1354d654cd9e73be3ee66836f304a7e9379", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/e2d97989-f695-469b-82fe-3c9bc3e558f5_githubactions.json b/server/src/data/split/e2d97989-f695-469b-82fe-3c9bc3e558f5_githubactions.json index 83d735a..8172ca3 100644 --- a/server/src/data/split/e2d97989-f695-469b-82fe-3c9bc3e558f5_githubactions.json +++ b/server/src/data/split/e2d97989-f695-469b-82fe-3c9bc3e558f5_githubactions.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 24, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-29T07:30:10Z", "hubId": "e2d97989-f695-469b-82fe-3c9bc3e558f5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "ko1ynnky", + "githubLatestCommit": "bb25aa0be2e92dead917b2961d1371b9c1c2fbc5", + "githubForks": 11 } \ No newline at end of file diff --git a/server/src/data/split/e2dcf0c7-8e01-41b1-8e89-6d519329260b_googlecalendar.json b/server/src/data/split/e2dcf0c7-8e01-41b1-8e89-6d519329260b_googlecalendar.json index 1f3ce5a..d2850f0 100644 --- a/server/src/data/split/e2dcf0c7-8e01-41b1-8e89-6d519329260b_googlecalendar.json +++ b/server/src/data/split/e2dcf0c7-8e01-41b1-8e89-6d519329260b_googlecalendar.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-02-16T14:59:44Z", "hubId": "e2dcf0c7-8e01-41b1-8e89-6d519329260b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2daf2a86cfc0310a238fe18a756bf0501cadea67", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e2de7455-1a14-45f9-9487-b4a856a1b117_goat.json b/server/src/data/split/e2de7455-1a14-45f9-9487-b4a856a1b117_goat.json index aee0bf2..4e7ab52 100644 --- a/server/src/data/split/e2de7455-1a14-45f9-9487-b4a856a1b117_goat.json +++ b/server/src/data/split/e2de7455-1a14-45f9-9487-b4a856a1b117_goat.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 627, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T18:25:34Z", "hubId": "e2de7455-1a14-45f9-9487-b4a856a1b117", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "goat-sdk", + "githubLatestCommit": "50839dde5aec3d5ecaa31ffd178a3799db6a4726", + "githubForks": 215, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e37d9735-60e7-4ea2-815a-b1a09ead13e4_gitlab.json b/server/src/data/split/e37d9735-60e7-4ea2-815a-b1a09ead13e4_gitlab.json index c14e73d..143657e 100644 --- a/server/src/data/split/e37d9735-60e7-4ea2-815a-b1a09ead13e4_gitlab.json +++ b/server/src/data/split/e37d9735-60e7-4ea2-815a-b1a09ead13e4_gitlab.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42075, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "e37d9735-60e7-4ea2-815a-b1a09ead13e4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e384425c-a8c8-415c-a9b6-bc44a11bdc0a_line.json b/server/src/data/split/e384425c-a8c8-415c-a9b6-bc44a11bdc0a_line.json index 6b1e7e5..860b265 100644 --- a/server/src/data/split/e384425c-a8c8-415c-a9b6-bc44a11bdc0a_line.json +++ b/server/src/data/split/e384425c-a8c8-415c-a9b6-bc44a11bdc0a_line.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-01T04:23:04Z", "hubId": "e384425c-a8c8-415c-a9b6-bc44a11bdc0a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "amornpan", + "githubLatestCommit": "7b2f21e0c0f6bd1e1e243fe990cb053efdb321c2", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/e3934754-6f5b-44e2-a357-5b90165114c6_filesystemaccess.json b/server/src/data/split/e3934754-6f5b-44e2-a357-5b90165114c6_filesystemaccess.json index f4b9fae..08cc078 100644 --- a/server/src/data/split/e3934754-6f5b-44e2-a357-5b90165114c6_filesystemaccess.json +++ b/server/src/data/split/e3934754-6f5b-44e2-a357-5b90165114c6_filesystemaccess.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-04-26T11:34:17Z", "hubId": "e3934754-6f5b-44e2-a357-5b90165114c6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1759e828272fdc9d8f8929b277c23df5236f08f7", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/e39e4fcd-88fd-4a7c-b361-fe7949d9ad62_notionviadify.json b/server/src/data/split/e39e4fcd-88fd-4a7c-b361-fe7949d9ad62_notionviadify.json index 253872e..15b8ba4 100644 --- a/server/src/data/split/e39e4fcd-88fd-4a7c-b361-fe7949d9ad62_notionviadify.json +++ b/server/src/data/split/e39e4fcd-88fd-4a7c-b361-fe7949d9ad62_notionviadify.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-01-09T14:25:35Z", "hubId": "e39e4fcd-88fd-4a7c-b361-fe7949d9ad62", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2e4558fb5bc58e3c70ad615fa94793aec25a020b", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/e3cc673b-6b54-4b20-8229-cc4b4ba5f0f4_sourcerelation.json b/server/src/data/split/e3cc673b-6b54-4b20-8229-cc4b4ba5f0f4_sourcerelation.json index 48de62b..d841ba8 100644 --- a/server/src/data/split/e3cc673b-6b54-4b20-8229-cc4b4ba5f0f4_sourcerelation.json +++ b/server/src/data/split/e3cc673b-6b54-4b20-8229-cc4b4ba5f0f4_sourcerelation.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-24T05:56:46Z", "hubId": "e3cc673b-6b54-4b20-8229-cc4b4ba5f0f4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "63980ea0426ccc8f41e22683a6e99da9ede38c4f", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e3e45418-397c-4520-96e9-864d78a26ec9_googlecalendar.json b/server/src/data/split/e3e45418-397c-4520-96e9-864d78a26ec9_googlecalendar.json index 77003cc..d6e0b9b 100644 --- a/server/src/data/split/e3e45418-397c-4520-96e9-864d78a26ec9_googlecalendar.json +++ b/server/src/data/split/e3e45418-397c-4520-96e9-864d78a26ec9_googlecalendar.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-03-18T20:09:00Z", "hubId": "e3e45418-397c-4520-96e9-864d78a26ec9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "547bad2e0f1a60c449f29146ce6647abb81e703c", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e3f79013-3428-4a5b-97f3-9a6782d5b3e3_llmresponses.json b/server/src/data/split/e3f79013-3428-4a5b-97f3-9a6782d5b3e3_llmresponses.json index 67cf418..5148044 100644 --- a/server/src/data/split/e3f79013-3428-4a5b-97f3-9a6782d5b3e3_llmresponses.json +++ b/server/src/data/split/e3f79013-3428-4a5b-97f3-9a6782d5b3e3_llmresponses.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-12T03:27:43Z", "hubId": "e3f79013-3428-4a5b-97f3-9a6782d5b3e3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7e64539d433d50b97ebb612db34edf63d9192f35", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e46060c7-b568-46eb-abcc-462a00a6c647_todoist.json b/server/src/data/split/e46060c7-b568-46eb-abcc-462a00a6c647_todoist.json index 77dc237..dd234f9 100644 --- a/server/src/data/split/e46060c7-b568-46eb-abcc-462a00a6c647_todoist.json +++ b/server/src/data/split/e46060c7-b568-46eb-abcc-462a00a6c647_todoist.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-04-28T13:09:33Z", "hubId": "e46060c7-b568-46eb-abcc-462a00a6c647", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2741004b12d0c7fcc07e020367253b28e7fbd894", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e4674dac-290b-4718-a8ac-9a5361401970_scholarly.json b/server/src/data/split/e4674dac-290b-4718-a8ac-9a5361401970_scholarly.json index 0ba18fc..695292b 100644 --- a/server/src/data/split/e4674dac-290b-4718-a8ac-9a5361401970_scholarly.json +++ b/server/src/data/split/e4674dac-290b-4718-a8ac-9a5361401970_scholarly.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 94, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-24T03:09:03Z", "hubId": "e4674dac-290b-4718-a8ac-9a5361401970", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "adityak74", + "githubLatestCommit": "c9ec6e96e0dcf95a47c5c7c10776064a3e43a1a3", + "githubForks": 13, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e482952c-f03b-4311-a6bc-0d6c89ade3dc_claudeconversationstomarkdown.json b/server/src/data/split/e482952c-f03b-4311-a6bc-0d6c89ade3dc_claudeconversationstomarkdown.json index 3d1fd9c..e277757 100644 --- a/server/src/data/split/e482952c-f03b-4311-a6bc-0d6c89ade3dc_claudeconversationstomarkdown.json +++ b/server/src/data/split/e482952c-f03b-4311-a6bc-0d6c89ade3dc_claudeconversationstomarkdown.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-20T19:15:01Z", "hubId": "e482952c-f03b-4311-a6bc-0d6c89ade3dc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7973aa579beb447031c86c7b97ec6996bcf95f29", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/e4d4eb3d-74cb-4407-b685-5222744b10ce_filesystem.json b/server/src/data/split/e4d4eb3d-74cb-4407-b685-5222744b10ce_filesystem.json index 8f1d6b2..0210bd3 100644 --- a/server/src/data/split/e4d4eb3d-74cb-4407-b685-5222744b10ce_filesystem.json +++ b/server/src/data/split/e4d4eb3d-74cb-4407-b685-5222744b10ce_filesystem.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 24180, + "githubStars": 42075, "downloadCount": 16368, "createdAt": "2025-02-17T22:22:00.256588Z", - "updatedAt": "2025-02-17T22:22:00.256588Z", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "e4d4eb3d-74cb-4407-b685-5222744b10ce", "isOfficialIntegration": false, "isReferenceServer": true, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e4f1774c-98c8-497f-b7cc-f2f41b451377_serial.json b/server/src/data/split/e4f1774c-98c8-497f-b7cc-f2f41b451377_serial.json index ba6e5a9..b74db3d 100644 --- a/server/src/data/split/e4f1774c-98c8-497f-b7cc-f2f41b451377_serial.json +++ b/server/src/data/split/e4f1774c-98c8-497f-b7cc-f2f41b451377_serial.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2024-12-19T08:49:31Z", "hubId": "e4f1774c-98c8-497f-b7cc-f2f41b451377", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cb2fc7bc0285a87cd48ed1b7b28f208616df3c73", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e51bb6ec-5e86-40d5-b8a8-3a181eb90559_jira.json b/server/src/data/split/e51bb6ec-5e86-40d5-b8a8-3a181eb90559_jira.json index c4ec0ae..7f89239 100644 --- a/server/src/data/split/e51bb6ec-5e86-40d5-b8a8-3a181eb90559_jira.json +++ b/server/src/data/split/e51bb6ec-5e86-40d5-b8a8-3a181eb90559_jira.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-01-21T17:39:54Z", "hubId": "e51bb6ec-5e86-40d5-b8a8-3a181eb90559", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7487075269d854ec0965a77cb3819aaf7a091600", + "githubForks": 8, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e57a29a4-aec7-46f8-9482-a16f5ed2228d_lichess.json b/server/src/data/split/e57a29a4-aec7-46f8-9482-a16f5ed2228d_lichess.json index d5b0cab..9933e23 100644 --- a/server/src/data/split/e57a29a4-aec7-46f8-9482-a16f5ed2228d_lichess.json +++ b/server/src/data/split/e57a29a4-aec7-46f8-9482-a16f5ed2228d_lichess.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-11T05:56:23Z", "hubId": "e57a29a4-aec7-46f8-9482-a16f5ed2228d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0169c4b487c5740f405231e4711e125136fdcdbc", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e5b75f04-e74d-4f3e-8524-d44bc61eb45a_pubmed.json b/server/src/data/split/e5b75f04-e74d-4f3e-8524-d44bc61eb45a_pubmed.json index a0684a2..a643d16 100644 --- a/server/src/data/split/e5b75f04-e74d-4f3e-8524-d44bc61eb45a_pubmed.json +++ b/server/src/data/split/e5b75f04-e74d-4f3e-8524-d44bc61eb45a_pubmed.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-01-01T18:47:56Z", "hubId": "e5b75f04-e74d-4f3e-8524-d44bc61eb45a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a996008b05d3e596150d1767ac4b46513d9f1a2b", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e6014e9e-25b3-48ef-9ada-5d4b67e6ec26_nodejsdebugger.json b/server/src/data/split/e6014e9e-25b3-48ef-9ada-5d4b67e6ec26_nodejsdebugger.json index b259188..362dd83 100644 --- a/server/src/data/split/e6014e9e-25b3-48ef-9ada-5d4b67e6ec26_nodejsdebugger.json +++ b/server/src/data/split/e6014e9e-25b3-48ef-9ada-5d4b67e6ec26_nodejsdebugger.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 223, "downloadCount": 0, "createdAt": "2025-03-24T12:50:44.485788+00:00", - "updatedAt": "2025-03-24T12:50:44.485788+00:00", + "updatedAt": "2025-03-23T20:10:51Z", "hubId": "e6014e9e-25b3-48ef-9ada-5d4b67e6ec26", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ab6c367325bdd3deaed77354819762b99dfa8571", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/e6457d8f-0c8d-4a34-b222-ded6f18495d2_awsresources.json b/server/src/data/split/e6457d8f-0c8d-4a34-b222-ded6f18495d2_awsresources.json index 03f38a0..8b23a4e 100644 --- a/server/src/data/split/e6457d8f-0c8d-4a34-b222-ded6f18495d2_awsresources.json +++ b/server/src/data/split/e6457d8f-0c8d-4a34-b222-ded6f18495d2_awsresources.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-10T06:34:21Z", "hubId": "e6457d8f-0c8d-4a34-b222-ded6f18495d2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "dd8956ec5b799a294744bc5a02b363e93ee7d86f", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e64dca3b-14b0-4885-a149-25ef7c891ed6_ntropy.json b/server/src/data/split/e64dca3b-14b0-4885-a149-25ef7c891ed6_ntropy.json index 334412b..48edbff 100644 --- a/server/src/data/split/e64dca3b-14b0-4885-a149-25ef7c891ed6_ntropy.json +++ b/server/src/data/split/e64dca3b-14b0-4885-a149-25ef7c891ed6_ntropy.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-09T02:05:30Z", "hubId": "e64dca3b-14b0-4885-a149-25ef7c891ed6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ab2df2c2dac565c8502b227e46e9f9e9a92c93f1", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e64f322d-4121-45c8-a271-d5f62d9ba635_fireproofjsondatabase.json b/server/src/data/split/e64f322d-4121-45c8-a271-d5f62d9ba635_fireproofjsondatabase.json index b9a64ce..6a1fdc8 100644 --- a/server/src/data/split/e64f322d-4121-45c8-a271-d5f62d9ba635_fireproofjsondatabase.json +++ b/server/src/data/split/e64f322d-4121-45c8-a271-d5f62d9ba635_fireproofjsondatabase.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2024-12-30T03:03:17Z", "hubId": "e64f322d-4121-45c8-a271-d5f62d9ba635", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b29976e1ce3eedc4506e1a6b4fd20bb100f02d93", + "githubForks": 3, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/e6977d7d-8fe0-4519-abf4-d1ebf801a777_datafocus.json b/server/src/data/split/e6977d7d-8fe0-4519-abf4-d1ebf801a777_datafocus.json index c5f7347..76b7ac1 100644 --- a/server/src/data/split/e6977d7d-8fe0-4519-abf4-d1ebf801a777_datafocus.json +++ b/server/src/data/split/e6977d7d-8fe0-4519-abf4-d1ebf801a777_datafocus.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-14T07:00:39Z", "hubId": "e6977d7d-8fe0-4519-abf4-d1ebf801a777", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2b2d412152f5285dede7c4cd92af0e485dd0edc8", + "githubForks": 0, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e6eda8f4-0752-4bd7-b951-d5cff617c292_hdwlinkedin.json b/server/src/data/split/e6eda8f4-0752-4bd7-b951-d5cff617c292_hdwlinkedin.json index 057132b..7776d58 100644 --- a/server/src/data/split/e6eda8f4-0752-4bd7-b951-d5cff617c292_hdwlinkedin.json +++ b/server/src/data/split/e6eda8f4-0752-4bd7-b951-d5cff617c292_hdwlinkedin.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 19, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T07:37:06Z", "hubId": "e6eda8f4-0752-4bd7-b951-d5cff617c292", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "horizondatawave", + "githubLatestCommit": "0bac28a6b0fe4ad08f3f461e9ac4d75c22bfcbfd", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e7096c67-05d5-4761-b551-ee49176fabdd_eunomia.json b/server/src/data/split/e7096c67-05d5-4761-b551-ee49176fabdd_eunomia.json index c462afe..5783367 100644 --- a/server/src/data/split/e7096c67-05d5-4761-b551-ee49176fabdd_eunomia.json +++ b/server/src/data/split/e7096c67-05d5-4761-b551-ee49176fabdd_eunomia.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-12T11:28:34Z", "hubId": "e7096c67-05d5-4761-b551-ee49176fabdd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "whataboutyou-ai", + "githubLatestCommit": "cb74fc9aea3147eb14d314d4394836b2bca45c8b", + "githubForks": 0, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e7179cc1-5de6-4d7c-9562-74544eadaffc_opensearch.json b/server/src/data/split/e7179cc1-5de6-4d7c-9562-74544eadaffc_opensearch.json index 419b146..9debcf8 100644 --- a/server/src/data/split/e7179cc1-5de6-4d7c-9562-74544eadaffc_opensearch.json +++ b/server/src/data/split/e7179cc1-5de6-4d7c-9562-74544eadaffc_opensearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-02-18T17:06:14Z", "hubId": "e7179cc1-5de6-4d7c-9562-74544eadaffc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8c65639144bdf00a031401b73f981ccaba190a32", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e74a32ec-a8af-4ef8-9296-8243bb3988b4_cogneemcp.json b/server/src/data/split/e74a32ec-a8af-4ef8-9296-8243bb3988b4_cogneemcp.json index a7bfb9f..b2a08dc 100644 --- a/server/src/data/split/e74a32ec-a8af-4ef8-9296-8243bb3988b4_cogneemcp.json +++ b/server/src/data/split/e74a32ec-a8af-4ef8-9296-8243bb3988b4_cogneemcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2056, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-25T22:03:05Z", "hubId": "e74a32ec-a8af-4ef8-9296-8243bb3988b4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "topoteretes", + "githubLatestCommit": "7d7df1876ea2b04a284d0b196b9fe1f844575e08", + "githubForks": 184, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e74e5bae-c456-48ba-953e-b9fe334259ce_jenkins.json b/server/src/data/split/e74e5bae-c456-48ba-953e-b9fe334259ce_jenkins.json index 5b7dd2d..c67bfa0 100644 --- a/server/src/data/split/e74e5bae-c456-48ba-953e-b9fe334259ce_jenkins.json +++ b/server/src/data/split/e74e5bae-c456-48ba-953e-b9fe334259ce_jenkins.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2024-12-21T15:49:54Z", "hubId": "e74e5bae-c456-48ba-953e-b9fe334259ce", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c4467e04de611f66a2458646a6cde0fc2066ba87", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e75ccb10-c89b-4a6d-8ad5-0742f82b3a91_slack.json b/server/src/data/split/e75ccb10-c89b-4a6d-8ad5-0742f82b3a91_slack.json index 2d68a4e..368c9ea 100644 --- a/server/src/data/split/e75ccb10-c89b-4a6d-8ad5-0742f82b3a91_slack.json +++ b/server/src/data/split/e75ccb10-c89b-4a6d-8ad5-0742f82b3a91_slack.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42075, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "e75ccb10-c89b-4a6d-8ad5-0742f82b3a91", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e764d72b-19ea-459f-beec-7b0ab4cacc45_malwarebazaarmcp.json b/server/src/data/split/e764d72b-19ea-459f-beec-7b0ab4cacc45_malwarebazaarmcp.json index ff2c858..bca4b0b 100644 --- a/server/src/data/split/e764d72b-19ea-459f-beec-7b0ab4cacc45_malwarebazaarmcp.json +++ b/server/src/data/split/e764d72b-19ea-459f-beec-7b0ab4cacc45_malwarebazaarmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T15:33:15.229Z", - "updatedAt": "2025-04-27T15:33:15.229Z", + "updatedAt": "2025-04-22T15:24:53Z", "hubId": "e764d72b-19ea-459f-beec-7b0ab4cacc45", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "mytechnotalent", + "githubLatestCommit": "d21483a74b1b35bc1595ac8440551e253ae73f1e", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e77044be-5768-425c-80c8-aa52b6b25f13_langchainintegration.json b/server/src/data/split/e77044be-5768-425c-80c8-aa52b6b25f13_langchainintegration.json index c029da3..fc331a7 100644 --- a/server/src/data/split/e77044be-5768-425c-80c8-aa52b6b25f13_langchainintegration.json +++ b/server/src/data/split/e77044be-5768-425c-80c8-aa52b6b25f13_langchainintegration.json @@ -18,9 +18,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-17T19:47:16Z", "hubId": "e77044be-5768-425c-80c8-aa52b6b25f13", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4651f855c200401c467697421141441d1e78122d", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/e77caba8-c343-4954-bf3d-ec89b332c669_pythontoolbox.json b/server/src/data/split/e77caba8-c343-4954-bf3d-ec89b332c669_pythontoolbox.json index 7c5238a..e16bb6c 100644 --- a/server/src/data/split/e77caba8-c343-4954-bf3d-ec89b332c669_pythontoolbox.json +++ b/server/src/data/split/e77caba8-c343-4954-bf3d-ec89b332c669_pythontoolbox.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-02-28T20:10:53Z", "hubId": "e77caba8-c343-4954-bf3d-ec89b332c669", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f2896087cfceba50ac4cb7b34e13c7c49f914381", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/e7956986-11b8-41ae-bd56-9e9dd59579d5_cube.json b/server/src/data/split/e7956986-11b8-41ae-bd56-9e9dd59579d5_cube.json index 18c06c4..400e129 100644 --- a/server/src/data/split/e7956986-11b8-41ae-bd56-9e9dd59579d5_cube.json +++ b/server/src/data/split/e7956986-11b8-41ae-bd56-9e9dd59579d5_cube.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-01-30T23:51:04Z", "hubId": "e7956986-11b8-41ae-bd56-9e9dd59579d5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7159189119346ed52b25f6caedb823987e36d543", + "githubForks": 2, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/e7ee24ac-77aa-4d6e-9ff2-de7160e29432_kubernetes.json b/server/src/data/split/e7ee24ac-77aa-4d6e-9ff2-de7160e29432_kubernetes.json index baa84fe..39d6dc3 100644 --- a/server/src/data/split/e7ee24ac-77aa-4d6e-9ff2-de7160e29432_kubernetes.json +++ b/server/src/data/split/e7ee24ac-77aa-4d6e-9ff2-de7160e29432_kubernetes.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-19T08:08:06Z", "hubId": "e7ee24ac-77aa-4d6e-9ff2-de7160e29432", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3bfa9bb102847fe5ff9b994785d5209c5f5dcbe2", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/e804a5b5-a4f5-4992-aa9f-92ed6b15ac49_jsonmanipulation.json b/server/src/data/split/e804a5b5-a4f5-4992-aa9f-92ed6b15ac49_jsonmanipulation.json index 5e0b2a7..3ef1141 100644 --- a/server/src/data/split/e804a5b5-a4f5-4992-aa9f-92ed6b15ac49_jsonmanipulation.json +++ b/server/src/data/split/e804a5b5-a4f5-4992-aa9f-92ed6b15ac49_jsonmanipulation.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-03-13T00:03:33Z", "hubId": "e804a5b5-a4f5-4992-aa9f-92ed6b15ac49", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d2a4b120cb87fa85d4ed31747ccf5c89fe848fb0", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e83695b9-6f5d-4065-bbe0-466f0676cb3f_azureresourcemanagement.json b/server/src/data/split/e83695b9-6f5d-4065-bbe0-466f0676cb3f_azureresourcemanagement.json index 5d75f47..ec1ccdf 100644 --- a/server/src/data/split/e83695b9-6f5d-4065-bbe0-466f0676cb3f_azureresourcemanagement.json +++ b/server/src/data/split/e83695b9-6f5d-4065-bbe0-466f0676cb3f_azureresourcemanagement.json @@ -2,7 +2,7 @@ "mcpId": "github.com/Streen9/azure-mcp", "githubUrl": "https://github.com/Streen9/azure-mcp", "name": "Azure Resource Management", - "author": "Streen9", + "author": "kalivaraprasad-gonapa", "description": "Integrates with Azure services to enable cloud resource management, including provisioning virtual machines, configuring networks, and monitoring subscriptions.", "codiconIcon": "azure", "logoUrl": "", @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-25T17:10:43Z", "hubId": "e83695b9-6f5d-4065-bbe0-466f0676cb3f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0aa6f303012d57dfab70130202cda73768872358", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e88e046f-1998-4756-9d45-ec8d46736722_mssqlmcp.json b/server/src/data/split/e88e046f-1998-4756-9d45-ec8d46736722_mssqlmcp.json index b7a49dd..f773bd8 100644 --- a/server/src/data/split/e88e046f-1998-4756-9d45-ec8d46736722_mssqlmcp.json +++ b/server/src/data/split/e88e046f-1998-4756-9d45-ec8d46736722_mssqlmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 29, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T07:57:34Z", "hubId": "e88e046f-1998-4756-9d45-ec8d46736722", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "daobataotie", + "githubLatestCommit": "ff2b21533f5ba8405378e6dab4f0f80423396dae", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e8bd8e2f-1fca-4a2b-b410-1fc1cb7a11ea_tavilysearch.json b/server/src/data/split/e8bd8e2f-1fca-4a2b-b410-1fc1cb7a11ea_tavilysearch.json index c7c6445..1d7fc98 100644 --- a/server/src/data/split/e8bd8e2f-1fca-4a2b-b410-1fc1cb7a11ea_tavilysearch.json +++ b/server/src/data/split/e8bd8e2f-1fca-4a2b-b410-1fc1cb7a11ea_tavilysearch.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-04-09T06:05:45Z", "hubId": "e8bd8e2f-1fca-4a2b-b410-1fc1cb7a11ea", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "34d9104ad91ea3c245a69af97e5da130a0430118", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e905bb3d-f703-44ac-ba5c-850cf212f4f7_sqlite.json b/server/src/data/split/e905bb3d-f703-44ac-ba5c-850cf212f4f7_sqlite.json index dd52114..ff3531b 100644 --- a/server/src/data/split/e905bb3d-f703-44ac-ba5c-850cf212f4f7_sqlite.json +++ b/server/src/data/split/e905bb3d-f703-44ac-ba5c-850cf212f4f7_sqlite.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-06T05:55:23Z", "hubId": "e905bb3d-f703-44ac-ba5c-850cf212f4f7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "61f07a877e8c333365346167b315cf11ddd9c334", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/e90696e1-f408-4704-8849-4f1ea77174ea_momento.json b/server/src/data/split/e90696e1-f408-4704-8849-4f1ea77174ea_momento.json index 86f2d80..73b4a48 100644 --- a/server/src/data/split/e90696e1-f408-4704-8849-4f1ea77174ea_momento.json +++ b/server/src/data/split/e90696e1-f408-4704-8849-4f1ea77174ea_momento.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-18T22:49:16Z", "hubId": "e90696e1-f408-4704-8849-4f1ea77174ea", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "momentohq", + "githubLatestCommit": "50afc8653d4ad6b208ed9d373a23420b4c4f8bde", + "githubForks": 0, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/e91e8793-6715-4417-994c-133e5c84f0cf_mindmapmcpserver.json b/server/src/data/split/e91e8793-6715-4417-994c-133e5c84f0cf_mindmapmcpserver.json index 2622b8d..a81e0b6 100644 --- a/server/src/data/split/e91e8793-6715-4417-994c-133e5c84f0cf_mindmapmcpserver.json +++ b/server/src/data/split/e91e8793-6715-4417-994c-133e5c84f0cf_mindmapmcpserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 86, "downloadCount": 0, "createdAt": "2025-03-31T02:25:27.667Z", - "updatedAt": "2025-03-31T02:25:27.667Z", + "updatedAt": "2025-04-28T19:27:48Z", "hubId": "e91e8793-6715-4417-994c-133e5c84f0cf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ed9700224d2c4aa799e7cba273e0ad71e0bbe19a", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/e950e881-601d-4ea1-a6e7-0dfa60a983a8_dify.json b/server/src/data/split/e950e881-601d-4ea1-a6e7-0dfa60a983a8_dify.json index f7e55f8..5e4b7b0 100644 --- a/server/src/data/split/e950e881-601d-4ea1-a6e7-0dfa60a983a8_dify.json +++ b/server/src/data/split/e950e881-601d-4ea1-a6e7-0dfa60a983a8_dify.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 207, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-04-20T15:08:09Z", "hubId": "e950e881-601d-4ea1-a6e7-0dfa60a983a8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "eef1f75e7e01bd9664e6dcfedaa9924928b1e423", + "githubForks": 24 } \ No newline at end of file diff --git a/server/src/data/split/e9b3cf77-14a9-47e1-acfc-a948cc9ea6a5_metaplex.json b/server/src/data/split/e9b3cf77-14a9-47e1-acfc-a948cc9ea6a5_metaplex.json index 8097e75..d44e344 100644 --- a/server/src/data/split/e9b3cf77-14a9-47e1-acfc-a948cc9ea6a5_metaplex.json +++ b/server/src/data/split/e9b3cf77-14a9-47e1-acfc-a948cc9ea6a5_metaplex.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-09T07:35:10Z", "hubId": "e9b3cf77-14a9-47e1-acfc-a948cc9ea6a5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b523f47f089015d0364a647302d0a14920c840a9", + "githubForks": 4, + "licenseType": "Unlicense" } \ No newline at end of file diff --git a/server/src/data/split/e9e06e71-b6b3-4021-92f7-9d44227f6f10_personalassistant.json b/server/src/data/split/e9e06e71-b6b3-4021-92f7-9d44227f6f10_personalassistant.json index ccaedfa..59c21e2 100644 --- a/server/src/data/split/e9e06e71-b6b3-4021-92f7-9d44227f6f10_personalassistant.json +++ b/server/src/data/split/e9e06e71-b6b3-4021-92f7-9d44227f6f10_personalassistant.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-04T06:13:31Z", "hubId": "e9e06e71-b6b3-4021-92f7-9d44227f6f10", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0f521d11cfba281b77649c079af41c8e4bf63623", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ea25ce37-e2ab-4e15-b14e-5a2c592460b1_puppeteerlinux.json b/server/src/data/split/ea25ce37-e2ab-4e15-b14e-5a2c592460b1_puppeteerlinux.json index ab8b8ba..4e11ff7 100644 --- a/server/src/data/split/ea25ce37-e2ab-4e15-b14e-5a2c592460b1_puppeteerlinux.json +++ b/server/src/data/split/ea25ce37-e2ab-4e15-b14e-5a2c592460b1_puppeteerlinux.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-05T04:49:21Z", "hubId": "ea25ce37-e2ab-4e15-b14e-5a2c592460b1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "15a7122be4591609601f0866c931523968447c5e", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/ea4d3c3c-25d5-4754-a0b2-2f4ad1f4f688_texttospeechwindows.json b/server/src/data/split/ea4d3c3c-25d5-4754-a0b2-2f4ad1f4f688_texttospeechwindows.json index db36dca..88b1a99 100644 --- a/server/src/data/split/ea4d3c3c-25d5-4754-a0b2-2f4ad1f4f688_texttospeechwindows.json +++ b/server/src/data/split/ea4d3c3c-25d5-4754-a0b2-2f4ad1f4f688_texttospeechwindows.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-17T15:53:26Z", "hubId": "ea4d3c3c-25d5-4754-a0b2-2f4ad1f4f688", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "8a8ff1f5fc1234275d2c993696dc35cae4efe68e", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/ea7d4c41-5149-4792-b3b1-7b75800bfee0_codingfeaturediscussion.json b/server/src/data/split/ea7d4c41-5149-4792-b3b1-7b75800bfee0_codingfeaturediscussion.json index bc49277..1ad233e 100644 --- a/server/src/data/split/ea7d4c41-5149-4792-b3b1-7b75800bfee0_codingfeaturediscussion.json +++ b/server/src/data/split/ea7d4c41-5149-4792-b3b1-7b75800bfee0_codingfeaturediscussion.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-10T14:44:36Z", "hubId": "ea7d4c41-5149-4792-b3b1-7b75800bfee0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d03ee5de671391582bb0af99b4b39b5b65e83961", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/eab4a4c6-0858-4ad3-9370-18f3fe1043b7_githubrepoextractor.json b/server/src/data/split/eab4a4c6-0858-4ad3-9370-18f3fe1043b7_githubrepoextractor.json index dd3c065..44e421f 100644 --- a/server/src/data/split/eab4a4c6-0858-4ad3-9370-18f3fe1043b7_githubrepoextractor.json +++ b/server/src/data/split/eab4a4c6-0858-4ad3-9370-18f3fe1043b7_githubrepoextractor.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-03-03T14:15:01Z", "hubId": "eab4a4c6-0858-4ad3-9370-18f3fe1043b7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f844adf462dc3cec80dec4383d786425d35f720a", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/eadc40a2-bcb7-43dd-b341-6116a9b7abd8_linkedin.json b/server/src/data/split/eadc40a2-bcb7-43dd-b341-6116a9b7abd8_linkedin.json index d1def49..23b0c25 100644 --- a/server/src/data/split/eadc40a2-bcb7-43dd-b341-6116a9b7abd8_linkedin.json +++ b/server/src/data/split/eadc40a2-bcb7-43dd-b341-6116a9b7abd8_linkedin.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 76, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-01-29T03:22:21Z", "hubId": "eadc40a2-bcb7-43dd-b341-6116a9b7abd8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9a29ece56c675cd910d6bfbd2e47a93f3b99140c", + "githubForks": 12, + "licenseType": "Unlicense" } \ No newline at end of file diff --git a/server/src/data/split/eb235f1b-f749-4846-8e46-917b1cf68872_mysql.json b/server/src/data/split/eb235f1b-f749-4846-8e46-917b1cf68872_mysql.json index 73b73b6..041592c 100644 --- a/server/src/data/split/eb235f1b-f749-4846-8e46-917b1cf68872_mysql.json +++ b/server/src/data/split/eb235f1b-f749-4846-8e46-917b1cf68872_mysql.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-03-11T06:42:50Z", "hubId": "eb235f1b-f749-4846-8e46-917b1cf68872", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7809afbfe4fe63744676a70f857fdad7dbf596cd", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/eb4582ed-1679-4a0b-a63f-eb4bbb4339b0_websocketenhancer.json b/server/src/data/split/eb4582ed-1679-4a0b-a63f-eb4bbb4339b0_websocketenhancer.json index dcf4ae6..19a1d28 100644 --- a/server/src/data/split/eb4582ed-1679-4a0b-a63f-eb4bbb4339b0_websocketenhancer.json +++ b/server/src/data/split/eb4582ed-1679-4a0b-a63f-eb4bbb4339b0_websocketenhancer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-25T19:17:46Z", "hubId": "eb4582ed-1679-4a0b-a63f-eb4bbb4339b0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e8191a0e01c6fd0c21431e10b7c522c4a18a15b2", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/eb69e9cf-8e18-4583-aca7-6b44ef6fe2b4_dbhubuniversaldatabasegateway.json b/server/src/data/split/eb69e9cf-8e18-4583-aca7-6b44ef6fe2b4_dbhubuniversaldatabasegateway.json index a6c738a..230c919 100644 --- a/server/src/data/split/eb69e9cf-8e18-4583-aca7-6b44ef6fe2b4_dbhubuniversaldatabasegateway.json +++ b/server/src/data/split/eb69e9cf-8e18-4583-aca7-6b44ef6fe2b4_dbhubuniversaldatabasegateway.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 344, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-27T07:32:49Z", "hubId": "eb69e9cf-8e18-4583-aca7-6b44ef6fe2b4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5e6c344ffaaa4238844dfd6ae3ec248530778437", + "githubForks": 40, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/eb71baf8-a08a-42f3-bc0b-f2a002a52c6e_raygun.json b/server/src/data/split/eb71baf8-a08a-42f3-bc0b-f2a002a52c6e_raygun.json index 9672405..d68aee7 100644 --- a/server/src/data/split/eb71baf8-a08a-42f3-bc0b-f2a002a52c6e_raygun.json +++ b/server/src/data/split/eb71baf8-a08a-42f3-bc0b-f2a002a52c6e_raygun.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 4, + "githubStars": 10, "downloadCount": 21, "createdAt": "2025-02-18T06:28:29.20344Z", - "updatedAt": "2025-02-18T06:28:29.20344Z", + "updatedAt": "2024-11-28T20:07:03Z", "hubId": "eb71baf8-a08a-42f3-bc0b-f2a002a52c6e", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "920dd2d7fcf500b2e30f229b5513bde424cff0ac", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/eb801734-0f60-4ed5-8c21-9a2d781ad212_gittools.json b/server/src/data/split/eb801734-0f60-4ed5-8c21-9a2d781ad212_gittools.json index f244c6b..8c7574b 100644 --- a/server/src/data/split/eb801734-0f60-4ed5-8c21-9a2d781ad212_gittools.json +++ b/server/src/data/split/eb801734-0f60-4ed5-8c21-9a2d781ad212_gittools.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 24951, + "githubStars": 42075, "downloadCount": 16621, "createdAt": "2025-02-19T02:22:25.91666Z", - "updatedAt": "2025-02-19T02:22:25.91666Z", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "eb801734-0f60-4ed5-8c21-9a2d781ad212", "isOfficialIntegration": false, "isReferenceServer": true, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ebd357ff-9a48-4b24-b8ef-720d38d119b9_grafanamcpserver.json b/server/src/data/split/ebd357ff-9a48-4b24-b8ef-720d38d119b9_grafanamcpserver.json index 7fb84af..8798e62 100644 --- a/server/src/data/split/ebd357ff-9a48-4b24-b8ef-720d38d119b9_grafanamcpserver.json +++ b/server/src/data/split/ebd357ff-9a48-4b24-b8ef-720d38d119b9_grafanamcpserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 620, "downloadCount": 0, "createdAt": "2025-04-24T09:07:48.681Z", - "updatedAt": "2025-04-24T09:07:48.681Z", + "updatedAt": "2025-04-25T16:14:13Z", "hubId": "ebd357ff-9a48-4b24-b8ef-720d38d119b9", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "2eb85c042ba2eff86f0e77ee7c317e520f36efe3", + "githubForks": 45, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ec20d87c-45d7-44ee-8cd0-2c7adbec5058_adjust.json b/server/src/data/split/ec20d87c-45d7-44ee-8cd0-2c7adbec5058_adjust.json index 3948967..8fb912b 100644 --- a/server/src/data/split/ec20d87c-45d7-44ee-8cd0-2c7adbec5058_adjust.json +++ b/server/src/data/split/ec20d87c-45d7-44ee-8cd0-2c7adbec5058_adjust.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-16T20:34:41Z", "hubId": "ec20d87c-45d7-44ee-8cd0-2c7adbec5058", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "175a384643ec6da8d4dfe45d8206fe0a480a337d", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ec610b04-5e98-4548-8d5e-f7f432c081ba_kubernetes.json b/server/src/data/split/ec610b04-5e98-4548-8d5e-f7f432c081ba_kubernetes.json index 91aa1a2..b14b5af 100644 --- a/server/src/data/split/ec610b04-5e98-4548-8d5e-f7f432c081ba_kubernetes.json +++ b/server/src/data/split/ec610b04-5e98-4548-8d5e-f7f432c081ba_kubernetes.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-31T06:31:55Z", "hubId": "ec610b04-5e98-4548-8d5e-f7f432c081ba", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "064aaf8fb8d034e81a1f0193d746f49e36c730f6", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ec720c54-9c8f-48db-ba76-f4583a32fd83_windowscli.json b/server/src/data/split/ec720c54-9c8f-48db-ba76-f4583a32fd83_windowscli.json index 4ede524..129de91 100644 --- a/server/src/data/split/ec720c54-9c8f-48db-ba76-f4583a32fd83_windowscli.json +++ b/server/src/data/split/ec720c54-9c8f-48db-ba76-f4583a32fd83_windowscli.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 158, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-03T09:18:07Z", "hubId": "ec720c54-9c8f-48db-ba76-f4583a32fd83", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5ac3bd33c29d51f8d2d9b0903f21c95ef3c15c2f", + "githubForks": 27, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ec7635ed-fa8e-43ab-ab50-56b1306deee9_websearchserper.json b/server/src/data/split/ec7635ed-fa8e-43ab-ab50-56b1306deee9_websearchserper.json index aa14824..3a779b1 100644 --- a/server/src/data/split/ec7635ed-fa8e-43ab-ab50-56b1306deee9_websearchserper.json +++ b/server/src/data/split/ec7635ed-fa8e-43ab-ab50-56b1306deee9_websearchserper.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2024-12-29T16:05:19Z", "hubId": "ec7635ed-fa8e-43ab-ab50-56b1306deee9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "012e4c6d8abe1ef3a59b3a26fc88e47c402ac948", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ec773325-c1e7-4a6e-a59e-e09ce61346dd_shopify.json b/server/src/data/split/ec773325-c1e7-4a6e-a59e-e09ce61346dd_shopify.json index 5e01102..b94b25a 100644 --- a/server/src/data/split/ec773325-c1e7-4a6e-a59e-e09ce61346dd_shopify.json +++ b/server/src/data/split/ec773325-c1e7-4a6e-a59e-e09ce61346dd_shopify.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-18T02:43:52Z", "hubId": "ec773325-c1e7-4a6e-a59e-e09ce61346dd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e7c32e99fa4cf1c5537267c660558561aff552a7", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ec934098-d1da-4e1c-b31f-a9de234a82b1_aidddevworkflows.json b/server/src/data/split/ec934098-d1da-4e1c-b31f-a9de234a82b1_aidddevworkflows.json index af52d3c..7bae6b4 100644 --- a/server/src/data/split/ec934098-d1da-4e1c-b31f-a9de234a82b1_aidddevworkflows.json +++ b/server/src/data/split/ec934098-d1da-4e1c-b31f-a9de234a82b1_aidddevworkflows.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 56, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-25T10:02:28Z", "hubId": "ec934098-d1da-4e1c-b31f-a9de234a82b1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "251ddb8d4493132c8bc3ecfdf6b7f1f7b2957d8e", + "githubForks": 11, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ec9a908d-fafc-4a09-a9bc-4b1e5ca337dd_imagegenerationcloudflare.json b/server/src/data/split/ec9a908d-fafc-4a09-a9bc-4b1e5ca337dd_imagegenerationcloudflare.json index 02619ae..8e15123 100644 --- a/server/src/data/split/ec9a908d-fafc-4a09-a9bc-4b1e5ca337dd_imagegenerationcloudflare.json +++ b/server/src/data/split/ec9a908d-fafc-4a09-a9bc-4b1e5ca337dd_imagegenerationcloudflare.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-18T15:59:11Z", "hubId": "ec9a908d-fafc-4a09-a9bc-4b1e5ca337dd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "936f95f2ed25db187f5ad718b24d7ac9de558276", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ecaf5845-83f2-4604-8598-fb25a85e3e7d_graphql.json b/server/src/data/split/ecaf5845-83f2-4604-8598-fb25a85e3e7d_graphql.json index b772697..d4d2178 100644 --- a/server/src/data/split/ecaf5845-83f2-4604-8598-fb25a85e3e7d_graphql.json +++ b/server/src/data/split/ecaf5845-83f2-4604-8598-fb25a85e3e7d_graphql.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 120, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-04-22T20:18:29Z", "hubId": "ecaf5845-83f2-4604-8598-fb25a85e3e7d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6e3884510da3eb3cee0753acc30e85cecff42f32", + "githubForks": 22, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ecb3eb05-909b-4d2e-b5cd-525596d0cbaf_mixpanel.json b/server/src/data/split/ecb3eb05-909b-4d2e-b5cd-525596d0cbaf_mixpanel.json index fb17e67..d51fa06 100644 --- a/server/src/data/split/ecb3eb05-909b-4d2e-b5cd-525596d0cbaf_mixpanel.json +++ b/server/src/data/split/ecb3eb05-909b-4d2e-b5cd-525596d0cbaf_mixpanel.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-14T16:52:11Z", "hubId": "ecb3eb05-909b-4d2e-b5cd-525596d0cbaf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2c4540407bb7ea595e1405ea3a143043a913dfd1", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ecbb27fe-3c7f-4267-9f25-bae5330019fe_sourcetreegenerator.json b/server/src/data/split/ecbb27fe-3c7f-4267-9f25-bae5330019fe_sourcetreegenerator.json index a4e58e5..664c963 100644 --- a/server/src/data/split/ecbb27fe-3c7f-4267-9f25-bae5330019fe_sourcetreegenerator.json +++ b/server/src/data/split/ecbb27fe-3c7f-4267-9f25-bae5330019fe_sourcetreegenerator.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-24T05:31:40Z", "hubId": "ecbb27fe-3c7f-4267-9f25-bae5330019fe", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9052436517f61b96841868951d97ca5d9b9a1c08", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ed23caa4-88f9-4939-a23a-6e1688b91f4f_jetbrainside.json b/server/src/data/split/ed23caa4-88f9-4939-a23a-6e1688b91f4f_jetbrainside.json index 85c8f9f..0ca769d 100644 --- a/server/src/data/split/ed23caa4-88f9-4939-a23a-6e1688b91f4f_jetbrainside.json +++ b/server/src/data/split/ed23caa4-88f9-4939-a23a-6e1688b91f4f_jetbrainside.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 297, + "githubStars": 571, "downloadCount": 287, "createdAt": "2025-02-17T22:47:35.793534Z", - "updatedAt": "2025-02-17T22:47:35.793534Z", + "updatedAt": "2025-04-11T13:55:32Z", "hubId": "ed23caa4-88f9-4939-a23a-6e1688b91f4f", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "96442caa0a09dbf41ffe75c63283e75d5a29f1a3", + "githubForks": 43, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/ed69f1d5-8f99-4c7b-9182-03d863fbbf71_serpapigooglesearch.json b/server/src/data/split/ed69f1d5-8f99-4c7b-9182-03d863fbbf71_serpapigooglesearch.json index 2e928b6..fc1eaba 100644 --- a/server/src/data/split/ed69f1d5-8f99-4c7b-9182-03d863fbbf71_serpapigooglesearch.json +++ b/server/src/data/split/ed69f1d5-8f99-4c7b-9182-03d863fbbf71_serpapigooglesearch.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-04T15:32:02Z", "hubId": "ed69f1d5-8f99-4c7b-9182-03d863fbbf71", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6a8e87934bf08f98370f1005c4a65d0ae67d31f1", + "githubForks": 4 } \ No newline at end of file diff --git a/server/src/data/split/ed9a3adf-2ed1-45f3-9c50-b81dbc03663b_openapi.json b/server/src/data/split/ed9a3adf-2ed1-45f3-9c50-b81dbc03663b_openapi.json index 5c0afc3..dbcbeda 100644 --- a/server/src/data/split/ed9a3adf-2ed1-45f3-9c50-b81dbc03663b_openapi.json +++ b/server/src/data/split/ed9a3adf-2ed1-45f3-9c50-b81dbc03663b_openapi.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 75, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-08T17:00:31Z", "hubId": "ed9a3adf-2ed1-45f3-9c50-b81dbc03663b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "43b0c2e7500d0e0cd74cc44149a44a8af815caf5", + "githubForks": 20 } \ No newline at end of file diff --git a/server/src/data/split/edd815c3-3533-4599-b1aa-00c5c05c23f9_edgeonepagesmcp.json b/server/src/data/split/edd815c3-3533-4599-b1aa-00c5c05c23f9_edgeonepagesmcp.json index b3cb5dc..24cd3cc 100644 --- a/server/src/data/split/edd815c3-3533-4599-b1aa-00c5c05c23f9_edgeonepagesmcp.json +++ b/server/src/data/split/edd815c3-3533-4599-b1aa-00c5c05c23f9_edgeonepagesmcp.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 61, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-24T08:12:40Z", "hubId": "edd815c3-3533-4599-b1aa-00c5c05c23f9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "TencentEdgeOne", + "githubLatestCommit": "c46481c4f2ed139073fd8081d4690e95e277f6a4", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ee0f6463-2217-4218-a56d-3a7bcd33bc52_youtubetranscriptextractor.json b/server/src/data/split/ee0f6463-2217-4218-a56d-3a7bcd33bc52_youtubetranscriptextractor.json index b6fb622..acd5953 100644 --- a/server/src/data/split/ee0f6463-2217-4218-a56d-3a7bcd33bc52_youtubetranscriptextractor.json +++ b/server/src/data/split/ee0f6463-2217-4218-a56d-3a7bcd33bc52_youtubetranscriptextractor.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-02T03:43:12Z", "hubId": "ee0f6463-2217-4218-a56d-3a7bcd33bc52", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "70ba9de323409650c697c351b52ab572b2d73475", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ee2b8e8f-b6b5-4f07-bf42-05776c7fbf40_dynamodb.json b/server/src/data/split/ee2b8e8f-b6b5-4f07-bf42-05776c7fbf40_dynamodb.json index babba0d..055b4fa 100644 --- a/server/src/data/split/ee2b8e8f-b6b5-4f07-bf42-05776c7fbf40_dynamodb.json +++ b/server/src/data/split/ee2b8e8f-b6b5-4f07-bf42-05776c7fbf40_dynamodb.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-01-07T18:15:23Z", "hubId": "ee2b8e8f-b6b5-4f07-bf42-05776c7fbf40", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "493d8d4f46f69bc7e42328cdcbd08af15b7a0c77", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ee3b34e4-96a4-4f0d-9ac1-5b91e110f946_datagov.json b/server/src/data/split/ee3b34e4-96a4-4f0d-9ac1-5b91e110f946_datagov.json index 79c5b65..a048ec6 100644 --- a/server/src/data/split/ee3b34e4-96a4-4f0d-9ac1-5b91e110f946_datagov.json +++ b/server/src/data/split/ee3b34e4-96a4-4f0d-9ac1-5b91e110f946_datagov.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-09T20:45:42Z", "hubId": "ee3b34e4-96a4-4f0d-9ac1-5b91e110f946", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2087a40aaa8a3696ec41d5e1446a447cd99b5105", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ee4af91b-c210-4763-bb52-5bb135c34cb6_supavec.json b/server/src/data/split/ee4af91b-c210-4763-bb52-5bb135c34cb6_supavec.json index 4e1f373..f0a82e4 100644 --- a/server/src/data/split/ee4af91b-c210-4763-bb52-5bb135c34cb6_supavec.json +++ b/server/src/data/split/ee4af91b-c210-4763-bb52-5bb135c34cb6_supavec.json @@ -2,7 +2,7 @@ "mcpId": "github.com/taishikato/supavec-mcp-server", "githubUrl": "https://github.com/taishikato/supavec-mcp-server", "name": "Supavec", - "author": "taishikato", + "author": "supavec", "description": "Integrates with Supavec to efficiently retrieve contextually relevant embeddings and associated content for enhancing knowledge retrieval and semantic search applications.", "codiconIcon": "supavec", "logoUrl": "", @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-13T03:49:56Z", "hubId": "ee4af91b-c210-4763-bb52-5bb135c34cb6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d1d438a4ce0ab30ce07aca82f517c6f79f357705", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ee4dbf55-e6bd-4bb8-a899-efaa36ff1b28_xtwitter.json b/server/src/data/split/ee4dbf55-e6bd-4bb8-a899-efaa36ff1b28_xtwitter.json index 9c47f67..5ffe17a 100644 --- a/server/src/data/split/ee4dbf55-e6bd-4bb8-a899-efaa36ff1b28_xtwitter.json +++ b/server/src/data/split/ee4dbf55-e6bd-4bb8-a899-efaa36ff1b28_xtwitter.json @@ -2,7 +2,7 @@ "mcpId": "github.com/TaazKareem/twitter-mcp-server", "githubUrl": "https://github.com/TaazKareem/twitter-mcp-server", "name": "X (Twitter)", - "author": "TaazKareem", + "author": "taazkareem", "description": "Integrates with X's API to enable tweet retrieval, user interactions, and social media analysis capabilities", "codiconIcon": "x", "logoUrl": "", @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-02-14T06:12:53Z", "hubId": "ee4dbf55-e6bd-4bb8-a899-efaa36ff1b28", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "66f02dacb92975c4ebc865f492be0275fffd9c00", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ee5c571f-16ea-4e33-b2d3-d37a09fb15cd_playwright.json b/server/src/data/split/ee5c571f-16ea-4e33-b2d3-d37a09fb15cd_playwright.json index 419584f..a0086f6 100644 --- a/server/src/data/split/ee5c571f-16ea-4e33-b2d3-d37a09fb15cd_playwright.json +++ b/server/src/data/split/ee5c571f-16ea-4e33-b2d3-d37a09fb15cd_playwright.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 95, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-01-07T06:34:58Z", "hubId": "ee5c571f-16ea-4e33-b2d3-d37a09fb15cd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e5bdaad978ca041620c18e5614a7fd4987d5a4f8", + "githubForks": 13, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/eea53112-b6d3-4f94-b5ea-cc8b84cb0991_commandsecuritylayer.json b/server/src/data/split/eea53112-b6d3-4f94-b5ea-cc8b84cb0991_commandsecuritylayer.json index 7e8525c..3ae3a94 100644 --- a/server/src/data/split/eea53112-b6d3-4f94-b5ea-cc8b84cb0991_commandsecuritylayer.json +++ b/server/src/data/split/eea53112-b6d3-4f94-b5ea-cc8b84cb0991_commandsecuritylayer.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-30T00:14:30Z", "hubId": "eea53112-b6d3-4f94-b5ea-cc8b84cb0991", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "259592f4ea5292718b9b6292b5b367363b9074d6", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/eeb592be-dfa0-4f33-b5d3-db59a2f894c9_splunk.json b/server/src/data/split/eeb592be-dfa0-4f33-b5d3-db59a2f894c9_splunk.json index 208451d..75dfdf5 100644 --- a/server/src/data/split/eeb592be-dfa0-4f33-b5d3-db59a2f894c9_splunk.json +++ b/server/src/data/split/eeb592be-dfa0-4f33-b5d3-db59a2f894c9_splunk.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-04-24T23:18:26Z", "hubId": "eeb592be-dfa0-4f33-b5d3-db59a2f894c9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f8c836f40749331ea557e9ff01d6d5e7f0e78882", + "githubForks": 7, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/eec70b66-de5f-4843-87b4-9b313814f7f6_githubmcpserver.json b/server/src/data/split/eec70b66-de5f-4843-87b4-9b313814f7f6_githubmcpserver.json index 963eea7..a13fd44 100644 --- a/server/src/data/split/eec70b66-de5f-4843-87b4-9b313814f7f6_githubmcpserver.json +++ b/server/src/data/split/eec70b66-de5f-4843-87b4-9b313814f7f6_githubmcpserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12598, "downloadCount": 0, "createdAt": "2025-04-05T15:09:24.808Z", - "updatedAt": "2025-04-05T15:09:24.808Z", + "updatedAt": "2025-04-25T12:44:49Z", "hubId": "eec70b66-de5f-4843-87b4-9b313814f7f6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4e26dce238cc4c3e8489c84a8e84a7f9dd9b4ca0", + "githubForks": 712, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/eecee367-9b9c-423a-8c3f-f1c00fd505fe_mcpservershub.json b/server/src/data/split/eecee367-9b9c-423a-8c3f-f1c00fd505fe_mcpservershub.json index be130d0..dd575cb 100644 --- a/server/src/data/split/eecee367-9b9c-423a-8c3f-f1c00fd505fe_mcpservershub.json +++ b/server/src/data/split/eecee367-9b9c-423a-8c3f-f1c00fd505fe_mcpservershub.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 202, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-28T14:33:16Z", "hubId": "eecee367-9b9c-423a-8c3f-f1c00fd505fe", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "apappascs", + "githubLatestCommit": "4bba3b521240dd0eea0466c6227dc566234dec10", + "githubForks": 23 } \ No newline at end of file diff --git a/server/src/data/split/ef293210-799f-40a4-b284-c690331e1ef4_outline.json b/server/src/data/split/ef293210-799f-40a4-b284-c690331e1ef4_outline.json index 0f50b1b..a475cf7 100644 --- a/server/src/data/split/ef293210-799f-40a4-b284-c690331e1ef4_outline.json +++ b/server/src/data/split/ef293210-799f-40a4-b284-c690331e1ef4_outline.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 11, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-26T21:23:45Z", "hubId": "ef293210-799f-40a4-b284-c690331e1ef4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "Vortiago", + "githubLatestCommit": "145c88f3a4bce69dbde9b42e952d1d09b544029b", + "githubForks": 5, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ef53701e-6ed4-463c-9d56-a7293b9d75d7_elasticsearchknowledgegraph.json b/server/src/data/split/ef53701e-6ed4-463c-9d56-a7293b9d75d7_elasticsearchknowledgegraph.json index 44c9556..c7ff368 100644 --- a/server/src/data/split/ef53701e-6ed4-463c-9d56-a7293b9d75d7_elasticsearchknowledgegraph.json +++ b/server/src/data/split/ef53701e-6ed4-463c-9d56-a7293b9d75d7_elasticsearchknowledgegraph.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-04-01T19:37:32Z", "hubId": "ef53701e-6ed4-463c-9d56-a7293b9d75d7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e12a28fded0fb5b75bd47f21f382275fcfe6d45a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ef59527c-8afc-415b-8e67-ef70d95f6c22_wordpress.json b/server/src/data/split/ef59527c-8afc-415b-8e67-ef70d95f6c22_wordpress.json index adb4764..b846752 100644 --- a/server/src/data/split/ef59527c-8afc-415b-8e67-ef70d95f6c22_wordpress.json +++ b/server/src/data/split/ef59527c-8afc-415b-8e67-ef70d95f6c22_wordpress.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-03T04:40:22Z", "hubId": "ef59527c-8afc-415b-8e67-ef70d95f6c22", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1d5d4ae3bc3c1b2a904d3e2d9b007b40c114634d", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/ef66d0f1-8c3b-43ce-b97c-911d4e087cb5_deepseekr1.json b/server/src/data/split/ef66d0f1-8c3b-43ce-b97c-911d4e087cb5_deepseekr1.json index c155c52..0671845 100644 --- a/server/src/data/split/ef66d0f1-8c3b-43ce-b97c-911d4e087cb5_deepseekr1.json +++ b/server/src/data/split/ef66d0f1-8c3b-43ce-b97c-911d4e087cb5_deepseekr1.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 53, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-20T01:40:56Z", "hubId": "ef66d0f1-8c3b-43ce-b97c-911d4e087cb5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5dae7ccefc846afc14c35cc967e14ac4460a8900", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ef88e9a7-5475-4fc2-bd47-0dd9e7037a39_ankicardsclanki.json b/server/src/data/split/ef88e9a7-5475-4fc2-bd47-0dd9e7037a39_ankicardsclanki.json index 9c8e280..994ba16 100644 --- a/server/src/data/split/ef88e9a7-5475-4fc2-bd47-0dd9e7037a39_ankicardsclanki.json +++ b/server/src/data/split/ef88e9a7-5475-4fc2-bd47-0dd9e7037a39_ankicardsclanki.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-26T12:55:38Z", "hubId": "ef88e9a7-5475-4fc2-bd47-0dd9e7037a39", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e03d4ee655987d3dec6d800f9b7110f2a3ac9a45", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/efc187fd-c52e-4144-bb79-f7e0ea6964f4_tavily.json b/server/src/data/split/efc187fd-c52e-4144-bb79-f7e0ea6964f4_tavily.json index ec9db98..08b4923 100644 --- a/server/src/data/split/efc187fd-c52e-4144-bb79-f7e0ea6964f4_tavily.json +++ b/server/src/data/split/efc187fd-c52e-4144-bb79-f7e0ea6964f4_tavily.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-01-06T09:34:22Z", "hubId": "efc187fd-c52e-4144-bb79-f7e0ea6964f4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5cd55121c5e3afa28a51a45f410ddd709ee4105f", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/efd3a01d-424b-4fc5-a8c8-a8b46a977d50_talktofigma.json b/server/src/data/split/efd3a01d-424b-4fc5-a8c8-a8b46a977d50_talktofigma.json index 7855738..8fbe1f5 100644 --- a/server/src/data/split/efd3a01d-424b-4fc5-a8c8-a8b46a977d50_talktofigma.json +++ b/server/src/data/split/efd3a01d-424b-4fc5-a8c8-a8b46a977d50_talktofigma.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3391, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-29T04:28:55Z", "hubId": "efd3a01d-424b-4fc5-a8c8-a8b46a977d50", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "sonnylazuardi", + "githubLatestCommit": "2a2f5410267c79b4b752da0f23888d38f7a3091f", + "githubForks": 316, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/efdcf0f1-93aa-4bb0-b720-809b8d8d07e8_meilisearch.json b/server/src/data/split/efdcf0f1-93aa-4bb0-b720-809b8d8d07e8_meilisearch.json index bea21dd..eda5050 100644 --- a/server/src/data/split/efdcf0f1-93aa-4bb0-b720-809b8d8d07e8_meilisearch.json +++ b/server/src/data/split/efdcf0f1-93aa-4bb0-b720-809b8d8d07e8_meilisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 76, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.149254+00:00", - "updatedAt": "2025-03-17T08:29:22.149254+00:00", + "updatedAt": "2025-02-25T17:28:44Z", "hubId": "efdcf0f1-93aa-4bb0-b720-809b8d8d07e8", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "5fce6a7a94b9c2e8a6007f4d80e5162c0a9eccb5", + "githubForks": 10, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f0189525-d72f-4ecd-bed6-c0a77cc9e0ae_speechinterfacefasterwhisper.json b/server/src/data/split/f0189525-d72f-4ecd-bed6-c0a77cc9e0ae_speechinterfacefasterwhisper.json index 942bdcd..b66cd73 100644 --- a/server/src/data/split/f0189525-d72f-4ecd-bed6-c0a77cc9e0ae_speechinterfacefasterwhisper.json +++ b/server/src/data/split/f0189525-d72f-4ecd-bed6-c0a77cc9e0ae_speechinterfacefasterwhisper.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 34, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-03-20T23:39:22Z", "hubId": "f0189525-d72f-4ecd-bed6-c0a77cc9e0ae", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d3665d6c3ce015bb2cc2b7b04146942ca0e6875d", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f03869f5-6538-4289-925e-2404b2eadb0b_mailchimp.json b/server/src/data/split/f03869f5-6538-4289-925e-2404b2eadb0b_mailchimp.json index 9f0aa5f..12bac0d 100644 --- a/server/src/data/split/f03869f5-6538-4289-925e-2404b2eadb0b_mailchimp.json +++ b/server/src/data/split/f03869f5-6538-4289-925e-2404b2eadb0b_mailchimp.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-12T02:02:35Z", "hubId": "f03869f5-6538-4289-925e-2404b2eadb0b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "37aebc234772ac73fd7431ad743d74c5c67e3ea0", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f04a187f-a37a-4586-8fbb-74b50919aa0f_paperlessngx.json b/server/src/data/split/f04a187f-a37a-4586-8fbb-74b50919aa0f_paperlessngx.json index c7c54b1..568e7f7 100644 --- a/server/src/data/split/f04a187f-a37a-4586-8fbb-74b50919aa0f_paperlessngx.json +++ b/server/src/data/split/f04a187f-a37a-4586-8fbb-74b50919aa0f_paperlessngx.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-01-06T15:37:03Z", "hubId": "f04a187f-a37a-4586-8fbb-74b50919aa0f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "43cb6fbac8e5680cb1ff4a877fe760d5ba52a387", + "githubForks": 7 } \ No newline at end of file diff --git a/server/src/data/split/f070edd9-4a6b-45aa-8f30-96f8088aee8d_clickup.json b/server/src/data/split/f070edd9-4a6b-45aa-8f30-96f8088aee8d_clickup.json index 188daad..77d4abf 100644 --- a/server/src/data/split/f070edd9-4a6b-45aa-8f30-96f8088aee8d_clickup.json +++ b/server/src/data/split/f070edd9-4a6b-45aa-8f30-96f8088aee8d_clickup.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-13T12:35:52Z", "hubId": "f070edd9-4a6b-45aa-8f30-96f8088aee8d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bcc171bf6fe30c9b8c06ab3a9a2902a95d2da6ae", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f072d5a1-99f3-490d-a26b-66c06f941c26_pdfforms.json b/server/src/data/split/f072d5a1-99f3-490d-a26b-66c06f941c26_pdfforms.json index 1fe5c6f..2787b31 100644 --- a/server/src/data/split/f072d5a1-99f3-490d-a26b-66c06f941c26_pdfforms.json +++ b/server/src/data/split/f072d5a1-99f3-490d-a26b-66c06f941c26_pdfforms.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-04-01T11:17:57Z", "hubId": "f072d5a1-99f3-490d-a26b-66c06f941c26", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "85f92ccab1b412b5d560f553a576f2966ba54c4f", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f0870244-ee05-414c-929f-1eb917daf855_puppeteer.json b/server/src/data/split/f0870244-ee05-414c-929f-1eb917daf855_puppeteer.json index 609f1fd..691b86e 100644 --- a/server/src/data/split/f0870244-ee05-414c-929f-1eb917daf855_puppeteer.json +++ b/server/src/data/split/f0870244-ee05-414c-929f-1eb917daf855_puppeteer.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42075, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "f0870244-ee05-414c-929f-1eb917daf855", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f0a4e74f-19f4-4bec-aff0-b8045520a807_kustoazuredataexplorer.json b/server/src/data/split/f0a4e74f-19f4-4bec-aff0-b8045520a807_kustoazuredataexplorer.json index 296db99..6362a3d 100644 --- a/server/src/data/split/f0a4e74f-19f4-4bec-aff0-b8045520a807_kustoazuredataexplorer.json +++ b/server/src/data/split/f0a4e74f-19f4-4bec-aff0-b8045520a807_kustoazuredataexplorer.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2024-12-12T13:31:36Z", "hubId": "f0a4e74f-19f4-4bec-aff0-b8045520a807", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "723087fff856d26dbe260c4423ab13cbd519d0c8", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f0bf24de-bb8f-4854-a852-43fad73c639c_homeassistant.json b/server/src/data/split/f0bf24de-bb8f-4854-a852-43fad73c639c_homeassistant.json index 389c2f3..6a6309a 100644 --- a/server/src/data/split/f0bf24de-bb8f-4854-a852-43fad73c639c_homeassistant.json +++ b/server/src/data/split/f0bf24de-bb8f-4854-a852-43fad73c639c_homeassistant.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-03-23T20:41:33Z", "hubId": "f0bf24de-bb8f-4854-a852-43fad73c639c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2368a39d11626bf875840aa515efadbc7bad8c4d", + "githubForks": 8, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f0d482c8-09e3-4f5a-ae08-e5019c34208f_memorybyfile.json b/server/src/data/split/f0d482c8-09e3-4f5a-ae08-e5019c34208f_memorybyfile.json index a1f9a96..8da1e0c 100644 --- a/server/src/data/split/f0d482c8-09e3-4f5a-ae08-e5019c34208f_memorybyfile.json +++ b/server/src/data/split/f0d482c8-09e3-4f5a-ae08-e5019c34208f_memorybyfile.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-12T09:50:23Z", "hubId": "f0d482c8-09e3-4f5a-ae08-e5019c34208f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e86b9f5ec1f624be5c23292d5357eb55c7838d12", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f0fbc5e8-3bea-45d8-bc06-1d1cb89e0c90_atlassiancloud.json b/server/src/data/split/f0fbc5e8-3bea-45d8-bc06-1d1cb89e0c90_atlassiancloud.json index 4b42640..48e2a15 100644 --- a/server/src/data/split/f0fbc5e8-3bea-45d8-bc06-1d1cb89e0c90_atlassiancloud.json +++ b/server/src/data/split/f0fbc5e8-3bea-45d8-bc06-1d1cb89e0c90_atlassiancloud.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1182, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-26T14:48:27Z", "hubId": "f0fbc5e8-3bea-45d8-bc06-1d1cb89e0c90", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "651c271e8aa76b469e9c67535669d93267ad5da6", + "githubForks": 191, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f10cd5c4-18de-4b67-9ce5-f097f5906e43_libsql.json b/server/src/data/split/f10cd5c4-18de-4b67-9ce5-f097f5906e43_libsql.json index e115efd..6065c11 100644 --- a/server/src/data/split/f10cd5c4-18de-4b67-9ce5-f097f5906e43_libsql.json +++ b/server/src/data/split/f10cd5c4-18de-4b67-9ce5-f097f5906e43_libsql.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-01-21T05:34:20Z", "hubId": "f10cd5c4-18de-4b67-9ce5-f097f5906e43", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d6faedd3275cccfa7f5ec413ab510473bc32eba3", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f13f917e-19b7-45d5-9c45-167fcdd6b307_trello.json b/server/src/data/split/f13f917e-19b7-45d5-9c45-167fcdd6b307_trello.json index b587f58..54e6f37 100644 --- a/server/src/data/split/f13f917e-19b7-45d5-9c45-167fcdd6b307_trello.json +++ b/server/src/data/split/f13f917e-19b7-45d5-9c45-167fcdd6b307_trello.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-27T02:46:59Z", "hubId": "f13f917e-19b7-45d5-9c45-167fcdd6b307", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ad126147ec5f75883d84444ff4d6b9512ed4631e", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f14cf952-6f8f-40c7-b21f-084bade1e44c_sanityio.json b/server/src/data/split/f14cf952-6f8f-40c7-b21f-084bade1e44c_sanityio.json index 6857544..a95814e 100644 --- a/server/src/data/split/f14cf952-6f8f-40c7-b21f-084bade1e44c_sanityio.json +++ b/server/src/data/split/f14cf952-6f8f-40c7-b21f-084bade1e44c_sanityio.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-05T23:29:44Z", "hubId": "f14cf952-6f8f-40c7-b21f-084bade1e44c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ad7693240760a0cf11cf37a0478e19ef3249da38", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f15a9e02-649b-478e-a8b5-368eb14e6022_excelreader.json b/server/src/data/split/f15a9e02-649b-478e-a8b5-368eb14e6022_excelreader.json index d169925..a493ad2 100644 --- a/server/src/data/split/f15a9e02-649b-478e-a8b5-368eb14e6022_excelreader.json +++ b/server/src/data/split/f15a9e02-649b-478e-a8b5-368eb14e6022_excelreader.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 16, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.366219+00:00", - "updatedAt": "2025-03-17T08:29:23.366219+00:00", + "updatedAt": "2025-02-19T22:20:53Z", "hubId": "f15a9e02-649b-478e-a8b5-368eb14e6022", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "91e8f67157e2b4f9f5a2542ff0a54998b69d8efd", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f16318b0-5fa6-43b3-864d-878bdd0c89b2_bookfetchlibrarygenesis.json b/server/src/data/split/f16318b0-5fa6-43b3-864d-878bdd0c89b2_bookfetchlibrarygenesis.json index 2b20511..fbfcda7 100644 --- a/server/src/data/split/f16318b0-5fa6-43b3-864d-878bdd0c89b2_bookfetchlibrarygenesis.json +++ b/server/src/data/split/f16318b0-5fa6-43b3-864d-878bdd0c89b2_bookfetchlibrarygenesis.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-17T10:55:49Z", "hubId": "f16318b0-5fa6-43b3-864d-878bdd0c89b2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0b16f5c8d056ee49df23700f7be57d3ca49163c2", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f1b5917a-cdd1-459d-8861-313a681b7f9c_githubprdiff.json b/server/src/data/split/f1b5917a-cdd1-459d-8861-313a681b7f9c_githubprdiff.json index f7df58c..ad869f3 100644 --- a/server/src/data/split/f1b5917a-cdd1-459d-8861-313a681b7f9c_githubprdiff.json +++ b/server/src/data/split/f1b5917a-cdd1-459d-8861-313a681b7f9c_githubprdiff.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-31T19:47:26Z", "hubId": "f1b5917a-cdd1-459d-8861-313a681b7f9c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3ec89b81d8a68019aafd94e18128b2497835ff7d", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/f1bacca8-82bb-4a7f-b1cb-f915327935aa_bravesearch.json b/server/src/data/split/f1bacca8-82bb-4a7f-b1cb-f915327935aa_bravesearch.json index b3b4d2a..6a146d1 100644 --- a/server/src/data/split/f1bacca8-82bb-4a7f-b1cb-f915327935aa_bravesearch.json +++ b/server/src/data/split/f1bacca8-82bb-4a7f-b1cb-f915327935aa_bravesearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42075, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "f1bacca8-82bb-4a7f-b1cb-f915327935aa", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f1d157d9-4068-4874-84bd-9d08b777ed74_webcontentextractor.json b/server/src/data/split/f1d157d9-4068-4874-84bd-9d08b777ed74_webcontentextractor.json index 2f3fa5a..2b5ab96 100644 --- a/server/src/data/split/f1d157d9-4068-4874-84bd-9d08b777ed74_webcontentextractor.json +++ b/server/src/data/split/f1d157d9-4068-4874-84bd-9d08b777ed74_webcontentextractor.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-02T21:53:51Z", "hubId": "f1d157d9-4068-4874-84bd-9d08b777ed74", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "44732ad3d42cd47620aff9d8f668dc65a482a040", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f1e2fbcc-422f-4b7e-be8a-6defe7b60b75_pulumi.json b/server/src/data/split/f1e2fbcc-422f-4b7e-be8a-6defe7b60b75_pulumi.json index a7942fd..d0d155f 100644 --- a/server/src/data/split/f1e2fbcc-422f-4b7e-be8a-6defe7b60b75_pulumi.json +++ b/server/src/data/split/f1e2fbcc-422f-4b7e-be8a-6defe7b60b75_pulumi.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-06T12:27:51Z", "hubId": "f1e2fbcc-422f-4b7e-be8a-6defe7b60b75", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "dogukanakkaya", + "githubLatestCommit": "07297a595bac71ea466104a7822b12b75ab7fae9", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f1eb13ca-c840-4f4b-835b-11b8beab60ad_usfiscaldata.json b/server/src/data/split/f1eb13ca-c840-4f4b-835b-11b8beab60ad_usfiscaldata.json index 17ee299..5c47b7f 100644 --- a/server/src/data/split/f1eb13ca-c840-4f4b-835b-11b8beab60ad_usfiscaldata.json +++ b/server/src/data/split/f1eb13ca-c840-4f4b-835b-11b8beab60ad_usfiscaldata.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2024-12-10T02:38:21Z", "hubId": "f1eb13ca-c840-4f4b-835b-11b8beab60ad", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "17e7c2980fe6d5e9b8ffcbd19de6b55aee316aa4", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/f1fc86a6-b5cf-477b-8282-8f4b11a2fcc2_deepseekr1reasoning.json b/server/src/data/split/f1fc86a6-b5cf-477b-8282-8f4b11a2fcc2_deepseekr1reasoning.json index 2d4803a..1d871bc 100644 --- a/server/src/data/split/f1fc86a6-b5cf-477b-8282-8f4b11a2fcc2_deepseekr1reasoning.json +++ b/server/src/data/split/f1fc86a6-b5cf-477b-8282-8f4b11a2fcc2_deepseekr1reasoning.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-20T08:30:50Z", "hubId": "f1fc86a6-b5cf-477b-8282-8f4b11a2fcc2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "63326383c2a114b88566adb6dfd5aa8de8685857", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f21c919c-f5d8-4895-918f-215ac48db5a8_youtubesubtitles.json b/server/src/data/split/f21c919c-f5d8-4895-918f-215ac48db5a8_youtubesubtitles.json index ad2b6b0..44360f6 100644 --- a/server/src/data/split/f21c919c-f5d8-4895-918f-215ac48db5a8_youtubesubtitles.json +++ b/server/src/data/split/f21c919c-f5d8-4895-918f-215ac48db5a8_youtubesubtitles.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-01-16T03:51:46Z", "hubId": "f21c919c-f5d8-4895-918f-215ac48db5a8", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "72797655dd4c2347a4d129c1be23ce377b192150", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f23c4a6a-448f-472f-acf9-2a9bea1250e6_ciaworldfactbook.json b/server/src/data/split/f23c4a6a-448f-472f-acf9-2a9bea1250e6_ciaworldfactbook.json index dcdace1..bb48576 100644 --- a/server/src/data/split/f23c4a6a-448f-472f-acf9-2a9bea1250e6_ciaworldfactbook.json +++ b/server/src/data/split/f23c4a6a-448f-472f-acf9-2a9bea1250e6_ciaworldfactbook.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2024-12-27T21:39:15Z", "hubId": "f23c4a6a-448f-472f-acf9-2a9bea1250e6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "2112b5d2880de1f85969cf78b8e9338d8ca1631c", + "githubForks": 0, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/f249d189-c9f6-4afb-8617-62b427d218b9_arduino.json b/server/src/data/split/f249d189-c9f6-4afb-8617-62b427d218b9_arduino.json index f29910d..7c59011 100644 --- a/server/src/data/split/f249d189-c9f6-4afb-8617-62b427d218b9_arduino.json +++ b/server/src/data/split/f249d189-c9f6-4afb-8617-62b427d218b9_arduino.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 35, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-20T12:14:33Z", "hubId": "f249d189-c9f6-4afb-8617-62b427d218b9", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "vishalmysore", + "githubLatestCommit": "696264139006fd8f2c56ff6229d814ff6d47e795", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f2d0d019-136b-4169-a0b3-1004b8113f15_jupiter.json b/server/src/data/split/f2d0d019-136b-4169-a0b3-1004b8113f15_jupiter.json index a5af66b..2113218 100644 --- a/server/src/data/split/f2d0d019-136b-4169-a0b3-1004b8113f15_jupiter.json +++ b/server/src/data/split/f2d0d019-136b-4169-a0b3-1004b8113f15_jupiter.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-17T21:44:07Z", "hubId": "f2d0d019-136b-4169-a0b3-1004b8113f15", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c5488c2ce061088ee4794e45534a8b23bf76a706", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f2f24f2f-e74f-4704-9de4-b3c2076f8ae7_mysqldatabase.json b/server/src/data/split/f2f24f2f-e74f-4704-9de4-b3c2076f8ae7_mysqldatabase.json index a1463ed..9287ca7 100644 --- a/server/src/data/split/f2f24f2f-e74f-4704-9de4-b3c2076f8ae7_mysqldatabase.json +++ b/server/src/data/split/f2f24f2f-e74f-4704-9de4-b3c2076f8ae7_mysqldatabase.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 60, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-04-24T11:57:54Z", "hubId": "f2f24f2f-e74f-4704-9de4-b3c2076f8ae7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cd3517b50e3b5a96719936f6ae672db024cd3603", + "githubForks": 14, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f34b1829-8429-49bf-b190-0fe36ca9d8c1_rediscloudapi.json b/server/src/data/split/f34b1829-8429-49bf-b190-0fe36ca9d8c1_rediscloudapi.json index 143f2ce..3a0b926 100644 --- a/server/src/data/split/f34b1829-8429-49bf-b190-0fe36ca9d8c1_rediscloudapi.json +++ b/server/src/data/split/f34b1829-8429-49bf-b190-0fe36ca9d8c1_rediscloudapi.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 14, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-10T06:12:36Z", "hubId": "f34b1829-8429-49bf-b190-0fe36ca9d8c1", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "redis", + "githubLatestCommit": "9ec036ad1572cb0f40d61f54d19357d1ca1659c4", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f3602d21-315e-4eca-bb3b-39b1955afd64_cloudflarebrowserrendering.json b/server/src/data/split/f3602d21-315e-4eca-bb3b-39b1955afd64_cloudflarebrowserrendering.json index 5bc92a0..ae1a505 100644 --- a/server/src/data/split/f3602d21-315e-4eca-bb3b-39b1955afd64_cloudflarebrowserrendering.json +++ b/server/src/data/split/f3602d21-315e-4eca-bb3b-39b1955afd64_cloudflarebrowserrendering.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-12T23:39:18Z", "hubId": "f3602d21-315e-4eca-bb3b-39b1955afd64", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a9a91e60e8b963142a1b607701bcf466e2ececfb", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f36ad72f-3cf1-4ce5-9d02-77abaf8a0df6_softwaredocumentationanalysis.json b/server/src/data/split/f36ad72f-3cf1-4ce5-9d02-77abaf8a0df6_softwaredocumentationanalysis.json index d0fa341..79c2dd6 100644 --- a/server/src/data/split/f36ad72f-3cf1-4ce5-9d02-77abaf8a0df6_softwaredocumentationanalysis.json +++ b/server/src/data/split/f36ad72f-3cf1-4ce5-9d02-77abaf8a0df6_softwaredocumentationanalysis.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2024-12-17T12:38:14Z", "hubId": "f36ad72f-3cf1-4ce5-9d02-77abaf8a0df6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "db0c6b8db91d8be2431734e79e3096c350252c23", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f376bea2-dc8f-4e14-9488-b0a7345a82eb_gitlab.json b/server/src/data/split/f376bea2-dc8f-4e14-9488-b0a7345a82eb_gitlab.json index cd5682b..e0ead83 100644 --- a/server/src/data/split/f376bea2-dc8f-4e14-9488-b0a7345a82eb_gitlab.json +++ b/server/src/data/split/f376bea2-dc8f-4e14-9488-b0a7345a82eb_gitlab.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 24268, + "githubStars": 42076, "downloadCount": 1481, "createdAt": "2025-02-17T22:46:26.88278Z", - "updatedAt": "2025-02-17T22:46:26.88278Z", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "f376bea2-dc8f-4e14-9488-b0a7345a82eb", "isOfficialIntegration": false, "isReferenceServer": true, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f3a91cb7-46ee-4306-b936-b03a6ba419e4_etherscantools.json b/server/src/data/split/f3a91cb7-46ee-4306-b936-b03a6ba419e4_etherscantools.json index 088df1b..495bfd4 100644 --- a/server/src/data/split/f3a91cb7-46ee-4306-b936-b03a6ba419e4_etherscantools.json +++ b/server/src/data/split/f3a91cb7-46ee-4306-b936-b03a6ba419e4_etherscantools.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-23T06:00:46Z", "hubId": "f3a91cb7-46ee-4306-b936-b03a6ba419e4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "bb99185f17d6da96fb602835fa9a0a1a73be2c55", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f3d7ed25-28ea-40a9-8d93-8c802a5bbfe7_pythonrun.json b/server/src/data/split/f3d7ed25-28ea-40a9-8d93-8c802a5bbfe7_pythonrun.json index 857a60b..c77b487 100644 --- a/server/src/data/split/f3d7ed25-28ea-40a9-8d93-8c802a5bbfe7_pythonrun.json +++ b/server/src/data/split/f3d7ed25-28ea-40a9-8d93-8c802a5bbfe7_pythonrun.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2024-12-20T22:48:16Z", "hubId": "f3d7ed25-28ea-40a9-8d93-8c802a5bbfe7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5f7844aacb48350b0807c68da6746ee356770e27", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f3ffae6c-567b-426b-8ba7-1a9a579f29db_bravesearch.json b/server/src/data/split/f3ffae6c-567b-426b-8ba7-1a9a579f29db_bravesearch.json index 72f4fe4..83da541 100644 --- a/server/src/data/split/f3ffae6c-567b-426b-8ba7-1a9a579f29db_bravesearch.json +++ b/server/src/data/split/f3ffae6c-567b-426b-8ba7-1a9a579f29db_bravesearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-02-20T17:32:38Z", "hubId": "f3ffae6c-567b-426b-8ba7-1a9a579f29db", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "eabd479db7c5368f0d872ab599aa6d9bd95e2803", + "githubForks": 7, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f434c233-2801-4c4a-9b92-f10f32f70870_mavendependencies.json b/server/src/data/split/f434c233-2801-4c4a-9b92-f10f32f70870_mavendependencies.json index 2bf8304..8001af3 100644 --- a/server/src/data/split/f434c233-2801-4c4a-9b92-f10f32f70870_mavendependencies.json +++ b/server/src/data/split/f434c233-2801-4c4a-9b92-f10f32f70870_mavendependencies.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-24T21:01:53Z", "hubId": "f434c233-2801-4c4a-9b92-f10f32f70870", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "24d9cbc5fcdbce53bcd54e20292da3b6e317f60a", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f4607382-b03b-40ed-a34b-889d483aa8a3_documentforge.json b/server/src/data/split/f4607382-b03b-40ed-a34b-889d483aa8a3_documentforge.json index 408c41c..4694397 100644 --- a/server/src/data/split/f4607382-b03b-40ed-a34b-889d483aa8a3_documentforge.json +++ b/server/src/data/split/f4607382-b03b-40ed-a34b-889d483aa8a3_documentforge.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-02-27T10:46:19Z", "hubId": "f4607382-b03b-40ed-a34b-889d483aa8a3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b9b9a994f4fe18fa4ec82762233967d74ae394ff", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f4a8ef74-c9c9-4771-8cc9-9b54116cac3a_sirishortcuts.json b/server/src/data/split/f4a8ef74-c9c9-4771-8cc9-9b54116cac3a_sirishortcuts.json index 0028fdb..1eca10e 100644 --- a/server/src/data/split/f4a8ef74-c9c9-4771-8cc9-9b54116cac3a_sirishortcuts.json +++ b/server/src/data/split/f4a8ef74-c9c9-4771-8cc9-9b54116cac3a_sirishortcuts.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 116, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-02-25T09:40:00Z", "hubId": "f4a8ef74-c9c9-4771-8cc9-9b54116cac3a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "783258e41178537e13a80bfeb96a86098b7973ec", + "githubForks": 7 } \ No newline at end of file diff --git a/server/src/data/split/f52cfe15-a704-404c-92be-a8fa9353941d_kospikosdaqstockdata.json b/server/src/data/split/f52cfe15-a704-404c-92be-a8fa9353941d_kospikosdaqstockdata.json index 63d649c..922ae04 100644 --- a/server/src/data/split/f52cfe15-a704-404c-92be-a8fa9353941d_kospikosdaqstockdata.json +++ b/server/src/data/split/f52cfe15-a704-404c-92be-a8fa9353941d_kospikosdaqstockdata.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-03-14T14:50:28Z", "hubId": "f52cfe15-a704-404c-92be-a8fa9353941d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cfcfec3f9ac326535931e1b3c1d84c6c7063aff3", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f5337563-9f0f-4d79-a448-5e9f126c9dad_qdrantdocsrag.json b/server/src/data/split/f5337563-9f0f-4d79-a448-5e9f126c9dad_qdrantdocsrag.json index 198d043..87598ee 100644 --- a/server/src/data/split/f5337563-9f0f-4d79-a448-5e9f126c9dad_qdrantdocsrag.json +++ b/server/src/data/split/f5337563-9f0f-4d79-a448-5e9f126c9dad_qdrantdocsrag.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 155, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2024-12-17T03:48:48Z", "hubId": "f5337563-9f0f-4d79-a448-5e9f126c9dad", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f2847dabb1bc2bfd10625f681a1fc9bcdf26039e", + "githubForks": 18, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f545679d-9ca1-43e8-8b74-cd16aa72df31_chess.json b/server/src/data/split/f545679d-9ca1-43e8-8b74-cd16aa72df31_chess.json index 3d8f40c..9044df5 100644 --- a/server/src/data/split/f545679d-9ca1-43e8-8b74-cd16aa72df31_chess.json +++ b/server/src/data/split/f545679d-9ca1-43e8-8b74-cd16aa72df31_chess.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-03-04T15:51:46Z", "hubId": "f545679d-9ca1-43e8-8b74-cd16aa72df31", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f5e18a71d4f239d14287e1ddd2ffa8a6f74ace4e", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f54e7e44-fdf2-46d7-a874-ac8b5778b193_deepseek.json b/server/src/data/split/f54e7e44-fdf2-46d7-a874-ac8b5778b193_deepseek.json index dac29ba..fb9dea6 100644 --- a/server/src/data/split/f54e7e44-fdf2-46d7-a874-ac8b5778b193_deepseek.json +++ b/server/src/data/split/f54e7e44-fdf2-46d7-a874-ac8b5778b193_deepseek.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-01-27T22:01:19Z", "hubId": "f54e7e44-fdf2-46d7-a874-ac8b5778b193", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "94813feeca4ad7834add6a8834fb6465d494ac36", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f54e81e9-a1fa-4ba2-b219-63280d8ecd66_currenttime.json b/server/src/data/split/f54e81e9-a1fa-4ba2-b219-63280d8ecd66_currenttime.json index c203bec..5c88042 100644 --- a/server/src/data/split/f54e81e9-a1fa-4ba2-b219-63280d8ecd66_currenttime.json +++ b/server/src/data/split/f54e81e9-a1fa-4ba2-b219-63280d8ecd66_currenttime.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-02-06T22:46:01Z", "hubId": "f54e81e9-a1fa-4ba2-b219-63280d8ecd66", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e20c7690ff444b5ce5eb01ebde8fbb9f9f8b29b5", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f5590297-e638-42fe-ac21-59e739d615d0_filemerger.json b/server/src/data/split/f5590297-e638-42fe-ac21-59e739d615d0_filemerger.json index 20f7900..2ae0b2b 100644 --- a/server/src/data/split/f5590297-e638-42fe-ac21-59e739d615d0_filemerger.json +++ b/server/src/data/split/f5590297-e638-42fe-ac21-59e739d615d0_filemerger.json @@ -15,12 +15,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-16T09:44:43Z", "hubId": "f5590297-e638-42fe-ac21-59e739d615d0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "cc2a0cb85532c5f5ea54b49d02237ea603cc82e0", + "githubForks": 3, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f5ce2f22-aad6-49c7-956c-3c7a16c827f4_scraplingfetch.json b/server/src/data/split/f5ce2f22-aad6-49c7-956c-3c7a16c827f4_scraplingfetch.json index 93eac29..cc0e492 100644 --- a/server/src/data/split/f5ce2f22-aad6-49c7-956c-3c7a16c827f4_scraplingfetch.json +++ b/server/src/data/split/f5ce2f22-aad6-49c7-956c-3c7a16c827f4_scraplingfetch.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-20T13:44:41Z", "hubId": "f5ce2f22-aad6-49c7-956c-3c7a16c827f4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "cyberchitta", + "githubLatestCommit": "08e5f655754ff900bfa39cc2a4d2dc319644e18e", + "githubForks": 2, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f5f18328-8e48-4c85-9167-eab1e99b9798_googlecalendar.json b/server/src/data/split/f5f18328-8e48-4c85-9167-eab1e99b9798_googlecalendar.json index 1f5029d..fbae1bb 100644 --- a/server/src/data/split/f5f18328-8e48-4c85-9167-eab1e99b9798_googlecalendar.json +++ b/server/src/data/split/f5f18328-8e48-4c85-9167-eab1e99b9798_googlecalendar.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-11T07:10:31Z", "hubId": "f5f18328-8e48-4c85-9167-eab1e99b9798", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6fac69030e9c9dae43c802bb96f517a06a4b5941", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f655fe55-305b-4958-ae1c-f8becb43a4d1_perplexity.json b/server/src/data/split/f655fe55-305b-4958-ae1c-f8becb43a4d1_perplexity.json index f90ed46..f0a8b80 100644 --- a/server/src/data/split/f655fe55-305b-4958-ae1c-f8becb43a4d1_perplexity.json +++ b/server/src/data/split/f655fe55-305b-4958-ae1c-f8becb43a4d1_perplexity.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 50, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-02-25T17:01:43Z", "hubId": "f655fe55-305b-4958-ae1c-f8becb43a4d1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e791b61a2f509710b7a7b73811d31c594efccf5f", + "githubForks": 12, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f6639054-1f81-4fdf-b3a5-969aaad46f2f_trivysecurityscanner.json b/server/src/data/split/f6639054-1f81-4fdf-b3a5-969aaad46f2f_trivysecurityscanner.json index cac54f7..e800a48 100644 --- a/server/src/data/split/f6639054-1f81-4fdf-b3a5-969aaad46f2f_trivysecurityscanner.json +++ b/server/src/data/split/f6639054-1f81-4fdf-b3a5-969aaad46f2f_trivysecurityscanner.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2025-02-18T11:08:53Z", "hubId": "f6639054-1f81-4fdf-b3a5-969aaad46f2f", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d44cabb7d1022dd56509bf3a51bcd76cb5206d6e", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f68a3de0-9fc1-4fa9-9a51-61518aa02ae3_androiddebugbridge.json b/server/src/data/split/f68a3de0-9fc1-4fa9-9a51-61518aa02ae3_androiddebugbridge.json index 15f3e57..98c2e28 100644 --- a/server/src/data/split/f68a3de0-9fc1-4fa9-9a51-61518aa02ae3_androiddebugbridge.json +++ b/server/src/data/split/f68a3de0-9fc1-4fa9-9a51-61518aa02ae3_androiddebugbridge.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 319, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-04-22T08:53:22Z", "hubId": "f68a3de0-9fc1-4fa9-9a51-61518aa02ae3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "11c5fa957e249010f3244f8318c38c4db0f58331", + "githubForks": 21, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f6ab5983-4037-468d-a75f-a2a12ac227d0_jira.json b/server/src/data/split/f6ab5983-4037-468d-a75f-a2a12ac227d0_jira.json index 636b66d..8e3bc74 100644 --- a/server/src/data/split/f6ab5983-4037-468d-a75f-a2a12ac227d0_jira.json +++ b/server/src/data/split/f6ab5983-4037-468d-a75f-a2a12ac227d0_jira.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-03-09T10:35:36Z", "hubId": "f6ab5983-4037-468d-a75f-a2a12ac227d0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ff0f00188aa3672ffa55dbc5dc7fe8e17373bf46", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f6e95ca4-65b2-4cc6-89fa-52215c7dd2a4_gmail.json b/server/src/data/split/f6e95ca4-65b2-4cc6-89fa-52215c7dd2a4_gmail.json index 990fb8f..59a44bc 100644 --- a/server/src/data/split/f6e95ca4-65b2-4cc6-89fa-52215c7dd2a4_gmail.json +++ b/server/src/data/split/f6e95ca4-65b2-4cc6-89fa-52215c7dd2a4_gmail.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-01-11T19:08:13Z", "hubId": "f6e95ca4-65b2-4cc6-89fa-52215c7dd2a4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "735a656b64638c33f7180a1aed07ca7b7b7ef23b", + "githubForks": 3, + "licenseType": "GPL-3.0" } \ No newline at end of file diff --git a/server/src/data/split/f6ed0cc6-7874-44e2-818c-61d04afcbf89_git.json b/server/src/data/split/f6ed0cc6-7874-44e2-818c-61d04afcbf89_git.json index ea9711c..7336f2c 100644 --- a/server/src/data/split/f6ed0cc6-7874-44e2-818c-61d04afcbf89_git.json +++ b/server/src/data/split/f6ed0cc6-7874-44e2-818c-61d04afcbf89_git.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-19T08:16:19Z", "hubId": "f6ed0cc6-7874-44e2-818c-61d04afcbf89", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "84e998f72af5372b4d518136d0c41b74f90b56fc", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f705a54d-c2b6-4d78-8ce2-b4debfbf6e5a_hefengweather.json b/server/src/data/split/f705a54d-c2b6-4d78-8ce2-b4debfbf6e5a_hefengweather.json index 23e9226..006378a 100644 --- a/server/src/data/split/f705a54d-c2b6-4d78-8ce2-b4debfbf6e5a_hefengweather.json +++ b/server/src/data/split/f705a54d-c2b6-4d78-8ce2-b4debfbf6e5a_hefengweather.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-02-26T07:57:31Z", "hubId": "f705a54d-c2b6-4d78-8ce2-b4debfbf6e5a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "08e5dbc516dcbac0dfea117646b3ccac11a2179c", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/f712c669-6b4f-4fd0-80dc-68272d5c5bcd_chroma.json b/server/src/data/split/f712c669-6b4f-4fd0-80dc-68272d5c5bcd_chroma.json index 71b733a..b6f8204 100644 --- a/server/src/data/split/f712c669-6b4f-4fd0-80dc-68272d5c5bcd_chroma.json +++ b/server/src/data/split/f712c669-6b4f-4fd0-80dc-68272d5c5bcd_chroma.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 119, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-08T17:04:24Z", "hubId": "f712c669-6b4f-4fd0-80dc-68272d5c5bcd", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "chroma-core", + "githubLatestCommit": "20a2ae8d0005330d556cf75c21093b0a02f67abd", + "githubForks": 15, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f71a3cef-3456-482a-b51d-cc727c8310d2_googlesheets.json b/server/src/data/split/f71a3cef-3456-482a-b51d-cc727c8310d2_googlesheets.json index ea52fba..ada5e89 100644 --- a/server/src/data/split/f71a3cef-3456-482a-b51d-cc727c8310d2_googlesheets.json +++ b/server/src/data/split/f71a3cef-3456-482a-b51d-cc727c8310d2_googlesheets.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2025-03-16T07:40:44Z", "hubId": "f71a3cef-3456-482a-b51d-cc727c8310d2", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e31e8f46bfa7620aee55f509972d238ed9cbdd76", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f74de335-ee4d-4709-b891-d0e6e8c91bc8_tavily.json b/server/src/data/split/f74de335-ee4d-4709-b891-d0e6e8c91bc8_tavily.json index 5331593..4472c97 100644 --- a/server/src/data/split/f74de335-ee4d-4709-b891-d0e6e8c91bc8_tavily.json +++ b/server/src/data/split/f74de335-ee4d-4709-b891-d0e6e8c91bc8_tavily.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": true, - "githubStars": 157, + "githubStars": 327, "downloadCount": 3317, "createdAt": "2025-02-17T22:46:47.267489Z", - "updatedAt": "2025-02-17T22:46:47.267489Z", + "updatedAt": "2025-04-28T13:13:56Z", "hubId": "f74de335-ee4d-4709-b891-d0e6e8c91bc8", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "githubLatestCommit": "604cfeae5fd6da1ebe8f07766335e459fe5c611f", + "githubForks": 44, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f766b811-4a3d-41a1-947c-db80b06fb074_vertexaisearch.json b/server/src/data/split/f766b811-4a3d-41a1-947c-db80b06fb074_vertexaisearch.json index ff89143..8ef248f 100644 --- a/server/src/data/split/f766b811-4a3d-41a1-947c-db80b06fb074_vertexaisearch.json +++ b/server/src/data/split/f766b811-4a3d-41a1-947c-db80b06fb074_vertexaisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-04-03T05:58:26Z", "hubId": "f766b811-4a3d-41a1-947c-db80b06fb074", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e4b45a5ccec405fe9bd887de176dff49f3f381f3", + "githubForks": 4, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f768b188-6992-4e45-ad24-30edcf96109d_obsidianvault.json b/server/src/data/split/f768b188-6992-4e45-ad24-30edcf96109d_obsidianvault.json index 48435cf..63e354b 100644 --- a/server/src/data/split/f768b188-6992-4e45-ad24-30edcf96109d_obsidianvault.json +++ b/server/src/data/split/f768b188-6992-4e45-ad24-30edcf96109d_obsidianvault.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 66, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-23T11:35:52Z", "hubId": "f768b188-6992-4e45-ad24-30edcf96109d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "04a507f47c28a2abaf2628dcbc03d97482743319", + "githubForks": 12, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f76df05a-5d44-4d50-88ce-c844e717a6b3_timeserver.json b/server/src/data/split/f76df05a-5d44-4d50-88ce-c844e717a6b3_timeserver.json index 20d98ba..f8e6337 100644 --- a/server/src/data/split/f76df05a-5d44-4d50-88ce-c844e717a6b3_timeserver.json +++ b/server/src/data/split/f76df05a-5d44-4d50-88ce-c844e717a6b3_timeserver.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-01-07T13:03:51Z", "hubId": "f76df05a-5d44-4d50-88ce-c844e717a6b3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "95ae3adf76193c08396618aabb6dcf38e10b1cff", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f77f9246-c398-49df-b926-5475215f8b3b_homeassistant.json b/server/src/data/split/f77f9246-c398-49df-b926-5475215f8b3b_homeassistant.json index 7b3f150..b37b1da 100644 --- a/server/src/data/split/f77f9246-c398-49df-b926-5475215f8b3b_homeassistant.json +++ b/server/src/data/split/f77f9246-c398-49df-b926-5475215f8b3b_homeassistant.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 246, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-02-01T04:56:35Z", "hubId": "f77f9246-c398-49df-b926-5475215f8b3b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "tevonsb", + "githubLatestCommit": "41bbfad10c73b2c768a84aa70b181c79bab8579d", + "githubForks": 11, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/f79f16a8-67da-43cf-89dc-f4f31fc6e3b3_strapicms.json b/server/src/data/split/f79f16a8-67da-43cf-89dc-f4f31fc6e3b3_strapicms.json index 4c5cad1..3b03616 100644 --- a/server/src/data/split/f79f16a8-67da-43cf-89dc-f4f31fc6e3b3_strapicms.json +++ b/server/src/data/split/f79f16a8-67da-43cf-89dc-f4f31fc6e3b3_strapicms.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-24T09:02:20Z", "hubId": "f79f16a8-67da-43cf-89dc-f4f31fc6e3b3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "88a72d00f2c7678cf54cc3d4f399d2034004725d", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f7b145fd-b43e-44bd-8cef-6a962d794a1e_spinnaker.json b/server/src/data/split/f7b145fd-b43e-44bd-8cef-6a962d794a1e_spinnaker.json index 5263ebf..2a9e093 100644 --- a/server/src/data/split/f7b145fd-b43e-44bd-8cef-6a962d794a1e_spinnaker.json +++ b/server/src/data/split/f7b145fd-b43e-44bd-8cef-6a962d794a1e_spinnaker.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2024-12-03T05:30:02Z", "hubId": "f7b145fd-b43e-44bd-8cef-6a962d794a1e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b254d1086ce2e9c62498062e3888ad8ecf092931", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f7bc612b-ad21-4669-ad1e-c32453fd5680_adamikblockchainandai.json b/server/src/data/split/f7bc612b-ad21-4669-ad1e-c32453fd5680_adamikblockchainandai.json index b469860..534dd16 100644 --- a/server/src/data/split/f7bc612b-ad21-4669-ad1e-c32453fd5680_adamikblockchainandai.json +++ b/server/src/data/split/f7bc612b-ad21-4669-ad1e-c32453fd5680_adamikblockchainandai.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-20T19:32:46Z", "hubId": "f7bc612b-ad21-4669-ad1e-c32453fd5680", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "518b89583a6876e8c7456abdd1703a312f6f666e", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f7c61db6-4ce3-44b3-b1e9-cfda53812daf_strapicms.json b/server/src/data/split/f7c61db6-4ce3-44b3-b1e9-cfda53812daf_strapicms.json index 8e0f75b..3103498 100644 --- a/server/src/data/split/f7c61db6-4ce3-44b3-b1e9-cfda53812daf_strapicms.json +++ b/server/src/data/split/f7c61db6-4ce3-44b3-b1e9-cfda53812daf_strapicms.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-11T08:51:29Z", "hubId": "f7c61db6-4ce3-44b3-b1e9-cfda53812daf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "7a27fd0233e611500d8be781d2f0c7600d5b8978", + "githubForks": 8, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f7ceadd5-d151-444f-ade6-d75a555f8272_iossimulator.json b/server/src/data/split/f7ceadd5-d151-444f-ade6-d75a555f8272_iossimulator.json index fb79a39..891078a 100644 --- a/server/src/data/split/f7ceadd5-d151-444f-ade6-d75a555f8272_iossimulator.json +++ b/server/src/data/split/f7ceadd5-d151-444f-ade6-d75a555f8272_iossimulator.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 39, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2024-12-13T18:24:18Z", "hubId": "f7ceadd5-d151-444f-ade6-d75a555f8272", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "f16cfd12741df1de4a097d30d427a93a0958d610", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/f7e94b59-8a60-437d-a7a7-9c687deac45b_nuanced.json b/server/src/data/split/f7e94b59-8a60-437d-a7a7-9c687deac45b_nuanced.json index 237b58b..4553a92 100644 --- a/server/src/data/split/f7e94b59-8a60-437d-a7a7-9c687deac45b_nuanced.json +++ b/server/src/data/split/f7e94b59-8a60-437d-a7a7-9c687deac45b_nuanced.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 9, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-25T01:13:30Z", "hubId": "f7e94b59-8a60-437d-a7a7-9c687deac45b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0f774cab3e6e0cf988f08043fc4c920abf9f9d09", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/f803f885-a161-4ee9-b4b0-04516be56878_aranet4.json b/server/src/data/split/f803f885-a161-4ee9-b4b0-04516be56878_aranet4.json index 5687c57..8f5e443 100644 --- a/server/src/data/split/f803f885-a161-4ee9-b4b0-04516be56878_aranet4.json +++ b/server/src/data/split/f803f885-a161-4ee9-b4b0-04516be56878_aranet4.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-20T13:16:54Z", "hubId": "f803f885-a161-4ee9-b4b0-04516be56878", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "diegobit", + "githubLatestCommit": "efb3bc9ec38cc516f2e86d7b37bf086d4321422a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f834ed95-8ece-4fb5-a807-9e631a095b66_terminallogmanager.json b/server/src/data/split/f834ed95-8ece-4fb5-a807-9e631a095b66_terminallogmanager.json index b72046f..595ba1b 100644 --- a/server/src/data/split/f834ed95-8ece-4fb5-a807-9e631a095b66_terminallogmanager.json +++ b/server/src/data/split/f834ed95-8ece-4fb5-a807-9e631a095b66_terminallogmanager.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-02-20T21:33:17Z", "hubId": "f834ed95-8ece-4fb5-a807-9e631a095b66", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "18c47d2412e1c96ff710e64ce202c7c95c2dbdc4", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f85df982-935d-4288-b6fe-aef5f2c3699c_youtubetranscriptextractor.json b/server/src/data/split/f85df982-935d-4288-b6fe-aef5f2c3699c_youtubetranscriptextractor.json index 5d77ccd..80efd3c 100644 --- a/server/src/data/split/f85df982-935d-4288-b6fe-aef5f2c3699c_youtubetranscriptextractor.json +++ b/server/src/data/split/f85df982-935d-4288-b6fe-aef5f2c3699c_youtubetranscriptextractor.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-03-13T04:47:08Z", "hubId": "f85df982-935d-4288-b6fe-aef5f2c3699c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6baa24a8fb4d51426b6fa02c6ccf13e946aefff6", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f88b32c3-9421-41ab-afb5-7644154cf274_linear.json b/server/src/data/split/f88b32c3-9421-41ab-afb5-7644154cf274_linear.json index a353965..860ae2d 100644 --- a/server/src/data/split/f88b32c3-9421-41ab-afb5-7644154cf274_linear.json +++ b/server/src/data/split/f88b32c3-9421-41ab-afb5-7644154cf274_linear.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-02-11T04:05:08Z", "hubId": "f88b32c3-9421-41ab-afb5-7644154cf274", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5fa31ad5abf7acfa3d5c05db5a558976549c4bc4", + "githubForks": 6 } \ No newline at end of file diff --git a/server/src/data/split/f8a2aa79-89d7-4b0e-a81d-56082137a173_sequentialthinking.json b/server/src/data/split/f8a2aa79-89d7-4b0e-a81d-56082137a173_sequentialthinking.json index 471d263..6880577 100644 --- a/server/src/data/split/f8a2aa79-89d7-4b0e-a81d-56082137a173_sequentialthinking.json +++ b/server/src/data/split/f8a2aa79-89d7-4b0e-a81d-56082137a173_sequentialthinking.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42077, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "f8a2aa79-89d7-4b0e-a81d-56082137a173", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f8a5c00b-b274-4361-8733-94fded4007e7_everart.json b/server/src/data/split/f8a5c00b-b274-4361-8733-94fded4007e7_everart.json index 2f8d161..41072b5 100644 --- a/server/src/data/split/f8a5c00b-b274-4361-8733-94fded4007e7_everart.json +++ b/server/src/data/split/f8a5c00b-b274-4361-8733-94fded4007e7_everart.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 42077, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T13:54:22Z", "hubId": "f8a5c00b-b274-4361-8733-94fded4007e7", "isOfficialIntegration": false, "isReferenceServer": true, - "isCommunityServer": false + "isCommunityServer": false, + "author": "modelcontextprotocol", + "githubLatestCommit": "de1abc85a7ddbe408fffc00f783c7e9f1a69b6b3", + "githubForks": 4620, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f8d4d356-3cfa-4c53-9f37-3c2747a7ab31_logfire.json b/server/src/data/split/f8d4d356-3cfa-4c53-9f37-3c2747a7ab31_logfire.json index 66d770a..9ad1d8f 100644 --- a/server/src/data/split/f8d4d356-3cfa-4c53-9f37-3c2747a7ab31_logfire.json +++ b/server/src/data/split/f8d4d356-3cfa-4c53-9f37-3c2747a7ab31_logfire.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 58, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-26T16:58:08Z", "hubId": "f8d4d356-3cfa-4c53-9f37-3c2747a7ab31", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "pydantic", + "githubLatestCommit": "de90f038bf7175ef2e4916903e388d222670bb2d", + "githubForks": 2 } \ No newline at end of file diff --git a/server/src/data/split/f8d9b89a-a22a-41dc-9ee8-8864f4042486_stockflowyahoofinance.json b/server/src/data/split/f8d9b89a-a22a-41dc-9ee8-8864f4042486_stockflowyahoofinance.json index 542e1b7..7b65873 100644 --- a/server/src/data/split/f8d9b89a-a22a-41dc-9ee8-8864f4042486_stockflowyahoofinance.json +++ b/server/src/data/split/f8d9b89a-a22a-41dc-9ee8-8864f4042486_stockflowyahoofinance.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 13, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-24T13:26:39Z", "hubId": "f8d9b89a-a22a-41dc-9ee8-8864f4042486", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ebf599d0d4bc5b5fec4d9793db8c2d40a6fef5a3", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f9106801-5673-40b3-be81-6c20b35c43fc_gedcomancestryfiles.json b/server/src/data/split/f9106801-5673-40b3-be81-6c20b35c43fc_gedcomancestryfiles.json index 9f71584..a0402f3 100644 --- a/server/src/data/split/f9106801-5673-40b3-be81-6c20b35c43fc_gedcomancestryfiles.json +++ b/server/src/data/split/f9106801-5673-40b3-be81-6c20b35c43fc_gedcomancestryfiles.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 22, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-01-03T21:11:19Z", "hubId": "f9106801-5673-40b3-be81-6c20b35c43fc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e923f54b67cbe619931751d5e37d3a572fe248bd", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f910acbe-f5b0-47af-a7b8-2444596989b7_bitablemcp.json b/server/src/data/split/f910acbe-f5b0-47af-a7b8-2444596989b7_bitablemcp.json index b9e67d5..24ae906 100644 --- a/server/src/data/split/f910acbe-f5b0-47af-a7b8-2444596989b7_bitablemcp.json +++ b/server/src/data/split/f910acbe-f5b0-47af-a7b8-2444596989b7_bitablemcp.json @@ -9,12 +9,15 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-20T03:38:20Z", "hubId": "f910acbe-f5b0-47af-a7b8-2444596989b7", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "lloydzhou", + "githubLatestCommit": "29b993c705e0b409a8b6d8d88e19fffd33292c26", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/f92927fd-cb20-44f3-83ee-4c661cebeadc_superset.json b/server/src/data/split/f92927fd-cb20-44f3-83ee-4c661cebeadc_superset.json index 0ab747e..7172139 100644 --- a/server/src/data/split/f92927fd-cb20-44f3-83ee-4c661cebeadc_superset.json +++ b/server/src/data/split/f92927fd-cb20-44f3-83ee-4c661cebeadc_superset.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 29, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-04-14T14:51:22Z", "hubId": "f92927fd-cb20-44f3-83ee-4c661cebeadc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "b5d0e593d79aacf4534b852a849c4ca237575abb", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f99b06b1-5238-4d67-aeac-c78e4381e8b5_epsilla.json b/server/src/data/split/f99b06b1-5238-4d67-aeac-c78e4381e8b5_epsilla.json index d0b7eea..01f317c 100644 --- a/server/src/data/split/f99b06b1-5238-4d67-aeac-c78e4381e8b5_epsilla.json +++ b/server/src/data/split/f99b06b1-5238-4d67-aeac-c78e4381e8b5_epsilla.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.06306+00:00", - "updatedAt": "2025-03-17T08:29:28.06306+00:00", + "updatedAt": "2024-12-25T11:38:04Z", "hubId": "f99b06b1-5238-4d67-aeac-c78e4381e8b5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "59bc2978c34b520ef2ce22504768675c14466afd", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/f9a867c2-1c26-4693-aff8-43968cf4b031_kokorotts.json b/server/src/data/split/f9a867c2-1c26-4693-aff8-43968cf4b031_kokorotts.json index 90c672e..4008bdd 100644 --- a/server/src/data/split/f9a867c2-1c26-4693-aff8-43968cf4b031_kokorotts.json +++ b/server/src/data/split/f9a867c2-1c26-4693-aff8-43968cf4b031_kokorotts.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-05T20:13:22Z", "hubId": "f9a867c2-1c26-4693-aff8-43968cf4b031", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3f84d1e73e8fbd5505873351de4323ea0da526f8", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/f9f01c7b-f27d-421b-ac29-9dc21c7d2969_postmantoolgeneration.json b/server/src/data/split/f9f01c7b-f27d-421b-ac29-9dc21c7d2969_postmantoolgeneration.json index 615e26a..29f4603 100644 --- a/server/src/data/split/f9f01c7b-f27d-421b-ac29-9dc21c7d2969_postmantoolgeneration.json +++ b/server/src/data/split/f9f01c7b-f27d-421b-ac29-9dc21c7d2969_postmantoolgeneration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 10, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-01-27T16:17:39Z", "hubId": "f9f01c7b-f27d-421b-ac29-9dc21c7d2969", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "86fcde385db862dea546feff9957bed82f798930", + "githubForks": 6, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fa04639a-438c-4b8e-8f74-550ca93568cd_zerodhakite.json b/server/src/data/split/fa04639a-438c-4b8e-8f74-550ca93568cd_zerodhakite.json index d433930..2163cdc 100644 --- a/server/src/data/split/fa04639a-438c-4b8e-8f74-550ca93568cd_zerodhakite.json +++ b/server/src/data/split/fa04639a-438c-4b8e-8f74-550ca93568cd_zerodhakite.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-04-28T19:05:26Z", "hubId": "fa04639a-438c-4b8e-8f74-550ca93568cd", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "9b33762b6d55258ecbb37b42f99e9257ea2d97ef", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/fa13d2ac-ebf3-4488-b9fa-5452a067b2ce_mem0autonomousmemory.json b/server/src/data/split/fa13d2ac-ebf3-4488-b9fa-5452a067b2ce_mem0autonomousmemory.json index 30fe94e..8146171 100644 --- a/server/src/data/split/fa13d2ac-ebf3-4488-b9fa-5452a067b2ce_mem0autonomousmemory.json +++ b/server/src/data/split/fa13d2ac-ebf3-4488-b9fa-5452a067b2ce_mem0autonomousmemory.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 43, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-04-20T23:24:31Z", "hubId": "fa13d2ac-ebf3-4488-b9fa-5452a067b2ce", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "93baadff6949fa8d380a1e83b17c918bc6ad7ad8", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fa18510e-4f4c-4623-9498-bd5194d5eea3_randomgeneration.json b/server/src/data/split/fa18510e-4f4c-4623-9498-bd5194d5eea3_randomgeneration.json index c6bc693..0bc2db3 100644 --- a/server/src/data/split/fa18510e-4f4c-4623-9498-bd5194d5eea3_randomgeneration.json +++ b/server/src/data/split/fa18510e-4f4c-4623-9498-bd5194d5eea3_randomgeneration.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-01-16T08:23:41Z", "hubId": "fa18510e-4f4c-4623-9498-bd5194d5eea3", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ceab91aadf71ff5cda9aa5991b941fd5095c3122", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fa3d836c-e000-44e8-aa83-0414e334b523_filefinder.json b/server/src/data/split/fa3d836c-e000-44e8-aa83-0414e334b523_filefinder.json index 8a4d694..74b8a2c 100644 --- a/server/src/data/split/fa3d836c-e000-44e8-aa83-0414e334b523_filefinder.json +++ b/server/src/data/split/fa3d836c-e000-44e8-aa83-0414e334b523_filefinder.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-02T21:50:59Z", "hubId": "fa3d836c-e000-44e8-aa83-0414e334b523", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a42cca22db7bee942ef94f7d876036d2c7b137ef", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/fa97c410-77e4-4551-887a-1b253946cd79_googlecalendar.json b/server/src/data/split/fa97c410-77e4-4551-887a-1b253946cd79_googlecalendar.json index 1655087..23ef7e3 100644 --- a/server/src/data/split/fa97c410-77e4-4551-887a-1b253946cd79_googlecalendar.json +++ b/server/src/data/split/fa97c410-77e4-4551-887a-1b253946cd79_googlecalendar.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 187, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-04-25T02:59:45Z", "hubId": "fa97c410-77e4-4551-887a-1b253946cd79", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ac0b8938aa8a82a9f007d60e330469ef0d1c33ad", + "githubForks": 64, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fb0104ea-a441-4f34-be7f-128911039439_dbquery.json b/server/src/data/split/fb0104ea-a441-4f34-be7f-128911039439_dbquery.json index 4827041..d6fc2c7 100644 --- a/server/src/data/split/fb0104ea-a441-4f34-be7f-128911039439_dbquery.json +++ b/server/src/data/split/fb0104ea-a441-4f34-be7f-128911039439_dbquery.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-12T12:46:13Z", "hubId": "fb0104ea-a441-4f34-be7f-128911039439", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6b851ff57303cd5ab663f1f926281335cb77d3c6", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fb8e56f5-e01f-4969-a242-09a32b4419b5_scrapezy.json b/server/src/data/split/fb8e56f5-e01f-4969-a242-09a32b4419b5_scrapezy.json index 0fe44de..7b496e9 100644 --- a/server/src/data/split/fb8e56f5-e01f-4969-a242-09a32b4419b5_scrapezy.json +++ b/server/src/data/split/fb8e56f5-e01f-4969-a242-09a32b4419b5_scrapezy.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-03-11T08:04:20Z", "hubId": "fb8e56f5-e01f-4969-a242-09a32b4419b5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "a8d31506d1f962c384840773e1918a310ec17032", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fb9a7b45-cc58-406c-9512-5d5195cc8d7d_optionsflowyahoofinance.json b/server/src/data/split/fb9a7b45-cc58-406c-9512-5d5195cc8d7d_optionsflowyahoofinance.json index ffcb92e..dec9e21 100644 --- a/server/src/data/split/fb9a7b45-cc58-406c-9512-5d5195cc8d7d_optionsflowyahoofinance.json +++ b/server/src/data/split/fb9a7b45-cc58-406c-9512-5d5195cc8d7d_optionsflowyahoofinance.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 7, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-02-20T17:24:41Z", "hubId": "fb9a7b45-cc58-406c-9512-5d5195cc8d7d", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "e633054da3b8adbccf4162f86b60a1ee9b2939d8", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fbb7f81f-f757-41d4-998e-0e66eb964abc_charlymemorycache.json b/server/src/data/split/fbb7f81f-f757-41d4-998e-0e66eb964abc_charlymemorycache.json index 7964bcd..a40e30e 100644 --- a/server/src/data/split/fbb7f81f-f757-41d4-998e-0e66eb964abc_charlymemorycache.json +++ b/server/src/data/split/fbb7f81f-f757-41d4-998e-0e66eb964abc_charlymemorycache.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 6, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-03T13:10:59Z", "hubId": "fbb7f81f-f757-41d4-998e-0e66eb964abc", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ee1d696c31b8f523f072064d59ded1a67591697b", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/fbc64c14-fbd3-4a4f-836d-45bd2c1a200b_memorypluginsqlite.json b/server/src/data/split/fbc64c14-fbd3-4a4f-836d-45bd2c1a200b_memorypluginsqlite.json index 3c65769..c6bc3db 100644 --- a/server/src/data/split/fbc64c14-fbd3-4a4f-836d-45bd2c1a200b_memorypluginsqlite.json +++ b/server/src/data/split/fbc64c14-fbd3-4a4f-836d-45bd2c1a200b_memorypluginsqlite.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-15T07:24:18Z", "hubId": "fbc64c14-fbd3-4a4f-836d-45bd2c1a200b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "47ff9f665c700d393a444ec86dd3ade48898b49a", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fc02a6fb-fa5c-4147-8e8f-546924aa5b8b_valyuknowledgeretrieval.json b/server/src/data/split/fc02a6fb-fa5c-4147-8e8f-546924aa5b8b_valyuknowledgeretrieval.json index 33a572a..ccf6df4 100644 --- a/server/src/data/split/fc02a6fb-fa5c-4147-8e8f-546924aa5b8b_valyuknowledgeretrieval.json +++ b/server/src/data/split/fc02a6fb-fa5c-4147-8e8f-546924aa5b8b_valyuknowledgeretrieval.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-05T00:54:21Z", "hubId": "fc02a6fb-fa5c-4147-8e8f-546924aa5b8b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3d08ffadac1bf23d81b38020e8707f3f351a343c", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fc450719-e4f6-4d63-bfe6-c24d1f2b4d50_reddit.json b/server/src/data/split/fc450719-e4f6-4d63-bfe6-c24d1f2b4d50_reddit.json index 4bcebac..a193bef 100644 --- a/server/src/data/split/fc450719-e4f6-4d63-bfe6-c24d1f2b4d50_reddit.json +++ b/server/src/data/split/fc450719-e4f6-4d63-bfe6-c24d1f2b4d50_reddit.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 63, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-03-01T13:55:50Z", "hubId": "fc450719-e4f6-4d63-bfe6-c24d1f2b4d50", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "10e983ac5b7dcd7761537f49961e68e98a1eed99", + "githubForks": 9, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fc47c208-5fd4-407a-a554-56b00721dd3e_kagisearch.json b/server/src/data/split/fc47c208-5fd4-407a-a554-56b00721dd3e_kagisearch.json index ce39b8b..4c444a9 100644 --- a/server/src/data/split/fc47c208-5fd4-407a-a554-56b00721dd3e_kagisearch.json +++ b/server/src/data/split/fc47c208-5fd4-407a-a554-56b00721dd3e_kagisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.041553+00:00", - "updatedAt": "2025-03-17T08:29:25.041553+00:00", + "updatedAt": "2025-01-30T11:04:46Z", "hubId": "fc47c208-5fd4-407a-a554-56b00721dd3e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4c3979b8ff76759eadc90e6340858ef612198548", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fc68f74c-2c0c-4728-a717-3411cf93bb7b_webbrowserplaywright.json b/server/src/data/split/fc68f74c-2c0c-4728-a717-3411cf93bb7b_webbrowserplaywright.json index 2769377..4062e00 100644 --- a/server/src/data/split/fc68f74c-2c0c-4728-a717-3411cf93bb7b_webbrowserplaywright.json +++ b/server/src/data/split/fc68f74c-2c0c-4728-a717-3411cf93bb7b_webbrowserplaywright.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 17, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2025-03-10T13:34:26Z", "hubId": "fc68f74c-2c0c-4728-a717-3411cf93bb7b", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "35a6185dc9c079f44262687297b98895ac099588", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fc838746-a1a4-4c60-86a3-d04b6f5b1baf_devto.json b/server/src/data/split/fc838746-a1a4-4c60-86a3-d04b6f5b1baf_devto.json index cba6cdc..a60bd56 100644 --- a/server/src/data/split/fc838746-a1a4-4c60-86a3-d04b6f5b1baf_devto.json +++ b/server/src/data/split/fc838746-a1a4-4c60-86a3-d04b6f5b1baf_devto.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-03T17:37:42Z", "hubId": "fc838746-a1a4-4c60-86a3-d04b6f5b1baf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0890f092c8bbca9539193519970cbc9b136689dc", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/fcc3c83d-81fa-4286-b5c4-6a971360a62a_secedgar.json b/server/src/data/split/fcc3c83d-81fa-4286-b5c4-6a971360a62a_secedgar.json index ade0169..56d53c2 100644 --- a/server/src/data/split/fcc3c83d-81fa-4286-b5c4-6a971360a62a_secedgar.json +++ b/server/src/data/split/fcc3c83d-81fa-4286-b5c4-6a971360a62a_secedgar.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 12, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-13T09:10:09Z", "hubId": "fcc3c83d-81fa-4286-b5c4-6a971360a62a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "stefanoamorelli", + "githubLatestCommit": "ab357da54c2e0d52d9ebaf54fc773f6a9c34054d", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fce38121-6958-4092-a012-1770f67bbad5_youtubetranscript.json b/server/src/data/split/fce38121-6958-4092-a012-1770f67bbad5_youtubetranscript.json index 07139e4..9dce851 100644 --- a/server/src/data/split/fce38121-6958-4092-a012-1770f67bbad5_youtubetranscript.json +++ b/server/src/data/split/fce38121-6958-4092-a012-1770f67bbad5_youtubetranscript.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-03-14T14:32:03Z", "hubId": "fce38121-6958-4092-a012-1770f67bbad5", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "4a2672d22992fb032fe8e10fac4cbd1a2898068d", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/fcf8c21f-08d3-4443-8850-fe8ba59b2285_mistralcodestral.json b/server/src/data/split/fcf8c21f-08d3-4443-8850-fe8ba59b2285_mistralcodestral.json index fe6ebb3..7832b70 100644 --- a/server/src/data/split/fcf8c21f-08d3-4443-8850-fe8ba59b2285_mistralcodestral.json +++ b/server/src/data/split/fcf8c21f-08d3-4443-8850-fe8ba59b2285_mistralcodestral.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.010831+00:00", - "updatedAt": "2025-03-17T08:29:26.010831+00:00", + "updatedAt": "2025-01-22T21:05:24Z", "hubId": "fcf8c21f-08d3-4443-8850-fe8ba59b2285", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5e4aea5ec5abbdc41184c6704424bf761c9c5b5e", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/fcfe106f-dc11-4b2e-a260-9aebbcc11a65_nostr.json b/server/src/data/split/fcfe106f-dc11-4b2e-a260-9aebbcc11a65_nostr.json index 9d7d4be..bc7a086 100644 --- a/server/src/data/split/fcfe106f-dc11-4b2e-a260-9aebbcc11a65_nostr.json +++ b/server/src/data/split/fcfe106f-dc11-4b2e-a260-9aebbcc11a65_nostr.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 27, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-02-05T09:04:42Z", "hubId": "fcfe106f-dc11-4b2e-a260-9aebbcc11a65", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "0d4e5431fe877954fe99eb35e3427a4727ce4a12", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fd6380d5-d2a4-4b84-b592-520cac1e8e52_setukyc.json b/server/src/data/split/fd6380d5-d2a4-4b84-b592-520cac1e8e52_setukyc.json index daaac08..f41709b 100644 --- a/server/src/data/split/fd6380d5-d2a4-4b84-b592-520cac1e8e52_setukyc.json +++ b/server/src/data/split/fd6380d5-d2a4-4b84-b592-520cac1e8e52_setukyc.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:26.758293+00:00", - "updatedAt": "2025-03-17T08:29:26.758293+00:00", + "updatedAt": "2025-01-23T11:45:45Z", "hubId": "fd6380d5-d2a4-4b84-b592-520cac1e8e52", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "992325ec9ee1349beac6cebe8c337f9ea5548eb1", + "githubForks": 0, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fd7b2b17-de19-4f75-8542-19dd710663db_dify.json b/server/src/data/split/fd7b2b17-de19-4f75-8542-19dd710663db_dify.json index ee305c5..c3cb1df 100644 --- a/server/src/data/split/fd7b2b17-de19-4f75-8542-19dd710663db_dify.json +++ b/server/src/data/split/fd7b2b17-de19-4f75-8542-19dd710663db_dify.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 36, "downloadCount": 0, "createdAt": "2025-03-17T08:29:22.634233+00:00", - "updatedAt": "2025-03-17T08:29:22.634233+00:00", + "updatedAt": "2025-01-19T08:41:54Z", "hubId": "fd7b2b17-de19-4f75-8542-19dd710663db", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "1f679ed2b4db3f8306f44b2aee615747e1b5960e", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/fd833a04-bd58-45dd-ac7b-e6d396aea699_barnsworthburningsearch.json b/server/src/data/split/fd833a04-bd58-45dd-ac7b-e6d396aea699_barnsworthburningsearch.json index 4de8ab3..c9a4b9e 100644 --- a/server/src/data/split/fd833a04-bd58-45dd-ac7b-e6d396aea699_barnsworthburningsearch.json +++ b/server/src/data/split/fd833a04-bd58-45dd-ac7b-e6d396aea699_barnsworthburningsearch.json @@ -19,9 +19,12 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-12T12:14:29Z", "hubId": "fd833a04-bd58-45dd-ac7b-e6d396aea699", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "c56bd40d368886ec3f62ea53d5ed88c0c8437786", + "githubForks": 3, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fda1a626-1c4e-4368-bcd2-ce1378406b8a_bigquery.json b/server/src/data/split/fda1a626-1c4e-4368-bcd2-ce1378406b8a_bigquery.json index 8d40257..4a44b74 100644 --- a/server/src/data/split/fda1a626-1c4e-4368-bcd2-ce1378406b8a_bigquery.json +++ b/server/src/data/split/fda1a626-1c4e-4368-bcd2-ce1378406b8a_bigquery.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 58, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.305405+00:00", - "updatedAt": "2025-03-17T08:29:21.305405+00:00", + "updatedAt": "2025-04-03T12:34:59Z", "hubId": "fda1a626-1c4e-4368-bcd2-ce1378406b8a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "36cebb115f9101363c24042b87ae68b7d38039e1", + "githubForks": 19, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fdd57302-bc86-4253-8e10-5ac5c15b3fa1_adobeillustrator.json b/server/src/data/split/fdd57302-bc86-4253-8e10-5ac5c15b3fa1_adobeillustrator.json index d21dcd9..dff9fc4 100644 --- a/server/src/data/split/fdd57302-bc86-4253-8e10-5ac5c15b3fa1_adobeillustrator.json +++ b/server/src/data/split/fdd57302-bc86-4253-8e10-5ac5c15b3fa1_adobeillustrator.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 20, "downloadCount": 0, "createdAt": "2025-03-17T08:29:23.859656+00:00", - "updatedAt": "2025-03-17T08:29:23.859656+00:00", + "updatedAt": "2024-12-16T23:43:42Z", "hubId": "fdd57302-bc86-4253-8e10-5ac5c15b3fa1", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "df55c5b715cc3dee83c83246aec9a49a285a073c", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/fddfa432-4482-4f05-9fcf-1b8e35bc26ca_oceanbase.json b/server/src/data/split/fddfa432-4482-4f05-9fcf-1b8e35bc26ca_oceanbase.json index 5ed8733..190ac62 100644 --- a/server/src/data/split/fddfa432-4482-4f05-9fcf-1b8e35bc26ca_oceanbase.json +++ b/server/src/data/split/fddfa432-4482-4f05-9fcf-1b8e35bc26ca_oceanbase.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-26T01:45:18Z", "hubId": "fddfa432-4482-4f05-9fcf-1b8e35bc26ca", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "yuanoOo", + "githubLatestCommit": "516e3f51dea287d09bd7a8c44b789f4880f0bd92", + "githubForks": 1, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/fe0a2540-d723-4c22-aeb8-eab255127145_jinaaisearch.json b/server/src/data/split/fe0a2540-d723-4c22-aeb8-eab255127145_jinaaisearch.json index f154939..7715cb3 100644 --- a/server/src/data/split/fe0a2540-d723-4c22-aeb8-eab255127145_jinaaisearch.json +++ b/server/src/data/split/fe0a2540-d723-4c22-aeb8-eab255127145_jinaaisearch.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 4, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2025-04-05T11:41:51Z", "hubId": "fe0a2540-d723-4c22-aeb8-eab255127145", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "777b1d56636f8fc8429a55bdbb3d5cba8238af3c", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fe2dcb5c-fe73-4341-8275-02e7a08c54bf_wordcounter.json b/server/src/data/split/fe2dcb5c-fe73-4341-8275-02e7a08c54bf_wordcounter.json index 98edb5a..1a1bb5d 100644 --- a/server/src/data/split/fe2dcb5c-fe73-4341-8275-02e7a08c54bf_wordcounter.json +++ b/server/src/data/split/fe2dcb5c-fe73-4341-8275-02e7a08c54bf_wordcounter.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 8, "downloadCount": 0, "createdAt": "2025-03-17T08:29:21.725369+00:00", - "updatedAt": "2025-03-17T08:29:21.725369+00:00", + "updatedAt": "2024-12-19T06:42:17Z", "hubId": "fe2dcb5c-fe73-4341-8275-02e7a08c54bf", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "d02541c4b523d4a698ed7f6f6a0a0220b2acfbc7", + "githubForks": 5, + "licenseType": "Apache-2.0" } \ No newline at end of file diff --git a/server/src/data/split/fe319ce3-2379-45e7-a657-c8c0ea639ec8_make.json b/server/src/data/split/fe319ce3-2379-45e7-a657-c8c0ea639ec8_make.json index 013901b..b2994e7 100644 --- a/server/src/data/split/fe319ce3-2379-45e7-a657-c8c0ea639ec8_make.json +++ b/server/src/data/split/fe319ce3-2379-45e7-a657-c8c0ea639ec8_make.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 76, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-12T00:00:34Z", "hubId": "fe319ce3-2379-45e7-a657-c8c0ea639ec8", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "integromat", + "githubLatestCommit": "d43b191f4c9134585e1853da8744ff8984eeabee", + "githubForks": 14, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fe35647d-0242-40db-8e39-bdbffe6b4422_redis.json b/server/src/data/split/fe35647d-0242-40db-8e39-bdbffe6b4422_redis.json index ae7f5a9..ed3d562 100644 --- a/server/src/data/split/fe35647d-0242-40db-8e39-bdbffe6b4422_redis.json +++ b/server/src/data/split/fe35647d-0242-40db-8e39-bdbffe6b4422_redis.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 23, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-03-12T05:33:45Z", "hubId": "fe35647d-0242-40db-8e39-bdbffe6b4422", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "author": "GongRzhe", + "githubLatestCommit": "9af5fa9492102e800351d03c8c9e37089a13773b", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fe64a5a9-0e4f-4f09-af03-ce754fa99c62_lumaaivideogeneration.json b/server/src/data/split/fe64a5a9-0e4f-4f09-af03-ce754fa99c62_lumaaivideogeneration.json index 2f3364b..ef0345d 100644 --- a/server/src/data/split/fe64a5a9-0e4f-4f09-af03-ce754fa99c62_lumaaivideogeneration.json +++ b/server/src/data/split/fe64a5a9-0e4f-4f09-af03-ce754fa99c62_lumaaivideogeneration.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 2, "downloadCount": 0, "createdAt": "2025-03-17T08:29:25.49229+00:00", - "updatedAt": "2025-03-17T08:29:25.49229+00:00", + "updatedAt": "2024-12-25T08:13:07Z", "hubId": "fe64a5a9-0e4f-4f09-af03-ce754fa99c62", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "df6f35a445c5b2f61cbe99afd37692f37bbb80d1", + "githubForks": 3 } \ No newline at end of file diff --git a/server/src/data/split/fe74b286-9f01-44f1-b8db-dd49ecb76b3e_singlestore.json b/server/src/data/split/fe74b286-9f01-44f1-b8db-dd49ecb76b3e_singlestore.json index 5f8caf7..e567d12 100644 --- a/server/src/data/split/fe74b286-9f01-44f1-b8db-dd49ecb76b3e_singlestore.json +++ b/server/src/data/split/fe74b286-9f01-44f1-b8db-dd49ecb76b3e_singlestore.json @@ -9,12 +9,16 @@ "tags": [], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 15, "downloadCount": 0, "createdAt": "2025-04-27T14:08:34.434Z", - "updatedAt": "2025-04-27T14:08:34.434Z", + "updatedAt": "2025-04-27T17:17:22Z", "hubId": "fe74b286-9f01-44f1-b8db-dd49ecb76b3e", "isOfficialIntegration": true, "isReferenceServer": false, - "isCommunityServer": false + "isCommunityServer": false, + "author": "singlestore-labs", + "githubLatestCommit": "e259a6459f8464c798a80684669ba4dde8af7bf5", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/fe8a43b2-d9b6-4a33-aab4-8a9dcde0f29e_vercel.json b/server/src/data/split/fe8a43b2-d9b6-4a33-aab4-8a9dcde0f29e_vercel.json index d028347..0fb8501 100644 --- a/server/src/data/split/fe8a43b2-d9b6-4a33-aab4-8a9dcde0f29e_vercel.json +++ b/server/src/data/split/fe8a43b2-d9b6-4a33-aab4-8a9dcde0f29e_vercel.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 32, "downloadCount": 0, "createdAt": "2025-03-13T17:46:48.26579+00:00", - "updatedAt": "2025-03-13T17:46:48.26579+00:00", + "updatedAt": "2025-04-03T14:13:36Z", "hubId": "fe8a43b2-d9b6-4a33-aab4-8a9dcde0f29e", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "ff56b2b29d28f0b93013437acd4b5409bb2f5769", + "githubForks": 8 } \ No newline at end of file diff --git a/server/src/data/split/fe92a143-0d9f-40c0-83c3-76716a8d635c_codeassist.json b/server/src/data/split/fe92a143-0d9f-40c0-83c3-76716a8d635c_codeassist.json index c8a4391..2b62aa5 100644 --- a/server/src/data/split/fe92a143-0d9f-40c0-83c3-76716a8d635c_codeassist.json +++ b/server/src/data/split/fe92a143-0d9f-40c0-83c3-76716a8d635c_codeassist.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:20.399027+00:00", - "updatedAt": "2025-03-17T08:29:20.399027+00:00", + "updatedAt": "2025-03-12T16:23:44Z", "hubId": "fe92a143-0d9f-40c0-83c3-76716a8d635c", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "69d7d32145734664e4fb118c26a2676ecbe68394", + "githubForks": 2, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/feb2774d-8a34-49c1-8c95-394f2e682d74_postgresql.json b/server/src/data/split/feb2774d-8a34-49c1-8c95-394f2e682d74_postgresql.json index 4891b7e..a5cbeb8 100644 --- a/server/src/data/split/feb2774d-8a34-49c1-8c95-394f2e682d74_postgresql.json +++ b/server/src/data/split/feb2774d-8a34-49c1-8c95-394f2e682d74_postgresql.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-02-28T16:01:17Z", "hubId": "feb2774d-8a34-49c1-8c95-394f2e682d74", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "70dd283ba856d886c17c3a39d57cb4d59173956a", + "githubForks": 1 } \ No newline at end of file diff --git a/server/src/data/split/fedd5cb2-8142-4c9c-8b8c-877f30c84960_argusgitlab.json b/server/src/data/split/fedd5cb2-8142-4c9c-8b8c-877f30c84960_argusgitlab.json index f7b542d..c2c5bf2 100644 --- a/server/src/data/split/fedd5cb2-8142-4c9c-8b8c-877f30c84960_argusgitlab.json +++ b/server/src/data/split/fedd5cb2-8142-4c9c-8b8c-877f30c84960_argusgitlab.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-02-24T14:02:47Z", "hubId": "fedd5cb2-8142-4c9c-8b8c-877f30c84960", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3c109bb4dc4ddd3ba6064b851cf06ead80d2b1fd", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ff20a7e3-3b9a-4414-8d6d-05cfde19a5a6_textsaver.json b/server/src/data/split/ff20a7e3-3b9a-4414-8d6d-05cfde19a5a6_textsaver.json index 8bcddaf..841a9c4 100644 --- a/server/src/data/split/ff20a7e3-3b9a-4414-8d6d-05cfde19a5a6_textsaver.json +++ b/server/src/data/split/ff20a7e3-3b9a-4414-8d6d-05cfde19a5a6_textsaver.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-03-16T11:01:16Z", "hubId": "ff20a7e3-3b9a-4414-8d6d-05cfde19a5a6", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "91c9e915ebf74cd0e61dd91f0c568aba5ae1998e", + "githubForks": 0 } \ No newline at end of file diff --git a/server/src/data/split/ff63bea4-5623-4ea9-b925-def9237c9320_videoeditor.json b/server/src/data/split/ff63bea4-5623-4ea9-b925-def9237c9320_videoeditor.json index 35ed326..582295c 100644 --- a/server/src/data/split/ff63bea4-5623-4ea9-b925-def9237c9320_videoeditor.json +++ b/server/src/data/split/ff63bea4-5623-4ea9-b925-def9237c9320_videoeditor.json @@ -16,12 +16,14 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 113, "downloadCount": 0, "createdAt": "2025-03-17T08:29:19.654593+00:00", - "updatedAt": "2025-03-17T08:29:19.654593+00:00", + "updatedAt": "2025-04-26T15:58:30Z", "hubId": "ff63bea4-5623-4ea9-b925-def9237c9320", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "3556b63e5519791abcf1751a90f4658b901d101e", + "githubForks": 17 } \ No newline at end of file diff --git a/server/src/data/split/ff8e5ba3-0bb6-46b4-aa9c-2d3235215e91_bazel.json b/server/src/data/split/ff8e5ba3-0bb6-46b4-aa9c-2d3235215e91_bazel.json index b1deb4d..b9c3ddb 100644 --- a/server/src/data/split/ff8e5ba3-0bb6-46b4-aa9c-2d3235215e91_bazel.json +++ b/server/src/data/split/ff8e5ba3-0bb6-46b4-aa9c-2d3235215e91_bazel.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 3, "downloadCount": 0, "createdAt": "2025-03-17T08:29:28.871131+00:00", - "updatedAt": "2025-03-17T08:29:28.871131+00:00", + "updatedAt": "2025-03-07T09:08:38Z", "hubId": "ff8e5ba3-0bb6-46b4-aa9c-2d3235215e91", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "5084a5b490ad01cc2a8c7a2ae168986470678fc2", + "githubForks": 1, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ff8ec593-c675-4b66-a958-c1b09a851dd4_azure.json b/server/src/data/split/ff8ec593-c675-4b66-a958-c1b09a851dd4_azure.json index 5961ba8..7a6d615 100644 --- a/server/src/data/split/ff8ec593-c675-4b66-a958-c1b09a851dd4_azure.json +++ b/server/src/data/split/ff8ec593-c675-4b66-a958-c1b09a851dd4_azure.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 5, "downloadCount": 0, "createdAt": "2025-03-17T08:29:24.291233+00:00", - "updatedAt": "2025-03-17T08:29:24.291233+00:00", + "updatedAt": "2025-03-13T06:30:23Z", "hubId": "ff8ec593-c675-4b66-a958-c1b09a851dd4", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "6e3a347de8a3406738cfb0a51dcdfa98e07cf65d", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ffb38101-e112-4321-8b41-be6126d7c08a_tungshingcalendar.json b/server/src/data/split/ffb38101-e112-4321-8b41-be6126d7c08a_tungshingcalendar.json index f450774..d10c53d 100644 --- a/server/src/data/split/ffb38101-e112-4321-8b41-be6126d7c08a_tungshingcalendar.json +++ b/server/src/data/split/ffb38101-e112-4321-8b41-be6126d7c08a_tungshingcalendar.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 26, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-04-14T00:15:45Z", "hubId": "ffb38101-e112-4321-8b41-be6126d7c08a", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "313274e6b14a6dc2776b57af04708706e8513a0c", + "githubForks": 4, + "licenseType": "MIT" } \ No newline at end of file diff --git a/server/src/data/split/ffb406a3-a4a6-4553-98be-16ea0681b1c0_illumio.json b/server/src/data/split/ffb406a3-a4a6-4553-98be-16ea0681b1c0_illumio.json index d3c045a..2d1967e 100644 --- a/server/src/data/split/ffb406a3-a4a6-4553-98be-16ea0681b1c0_illumio.json +++ b/server/src/data/split/ffb406a3-a4a6-4553-98be-16ea0681b1c0_illumio.json @@ -16,12 +16,15 @@ ], "requiresApiKey": false, "isRecommended": false, - "githubStars": 0, + "githubStars": 1, "downloadCount": 0, "createdAt": "2025-03-17T08:29:27.547179+00:00", - "updatedAt": "2025-03-17T08:29:27.547179+00:00", + "updatedAt": "2025-01-27T07:42:27Z", "hubId": "ffb406a3-a4a6-4553-98be-16ea0681b1c0", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "fa003fca45f38b5e39578130fc85eac08a262826", + "githubForks": 4, + "licenseType": "NOASSERTION" } \ No newline at end of file diff --git a/server/src/data/split/ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata.json b/server/src/data/split/ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata.json index ea50ad5..ef929f8 100644 --- a/server/src/data/split/ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata.json +++ b/server/src/data/split/ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata.json @@ -19,9 +19,11 @@ "githubStars": 0, "downloadCount": 0, "createdAt": "2025-03-17T08:29:29.634309+00:00", - "updatedAt": "2025-03-17T08:29:29.634309+00:00", + "updatedAt": "2025-02-25T18:52:53Z", "hubId": "ffce4ec2-2670-47a0-ab1c-87e35dae0017", "isOfficialIntegration": false, "isReferenceServer": false, - "isCommunityServer": true + "isCommunityServer": true, + "githubLatestCommit": "341db7b53ff971d79e82ef39a6c526ee78693b13", + "githubForks": 0 } \ No newline at end of file