Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,32 @@ graph TD
- `lint`: Run ESLint
- `type-check`: Run TypeScript type checking

### Server Data Processing Scripts
The server includes several data processing scripts that can be run with npm:

- `crawl-servers`: Crawls the MCP servers directory from the main repository
- `update-server-types`: Updates server type information from crawling results
- `clean-duplicates`: Cleans duplicate entries in the data
- `process_categories`: Processes and organizes categories data
- `process_locales`: Processes locale translations for internationalization

#### Running Background Processes
For long-running data processing tasks, you can use nohup to run them in the background:

```bash
# Run process_locales in the background with output to a log file
cd server && nohup npm run process_locales > process_locales.log 2>&1 &

# Check if the process is running
ps aux | grep "process_locales" | grep -v grep

# View the log output
tail -f process_locales.log

# Stop the process (replace PID with the actual process ID from ps command)
kill <PID>
```

## Community

Join the open community to build the future of context-aware AI together. Whether you're an AI tool developer, an enterprise looking to leverage existing data, or an early adopter exploring the frontier, we invite you to contribute.
Expand Down
3 changes: 2 additions & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"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",
"clean-duplicates": "tsx src/data/clean_duplicate.ts",
"process_categories": "tsx src/data/process_categories.ts"
"process_categories": "tsx src/data/process_categories.ts",
"process_locales": "tsx src/data/process_locales.ts"
},
"dependencies": {
"axios": "^1.6.0",
Expand Down
8 changes: 6 additions & 2 deletions server/src/data/process_locales.log.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lastProcessed": "2025-04-02T08:29:31.975Z",
"lastProcessed": "2025-04-27T15:43:33.571Z",
"processedFiles": [
"0006b282-ac88-4c32-b76c-02476e972a04_githubprojects",
"00739d70-842d-4d36-bb98-04bde51a2220_kubernetes",
Expand Down Expand Up @@ -1572,6 +1572,10 @@
"ff8ec593-c675-4b66-a958-c1b09a851dd4_azure",
"ffb38101-e112-4321-8b41-be6126d7c08a_tungshingcalendar",
"ffb406a3-a4a6-4553-98be-16ea0681b1c0_illumio",
"ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata"
"ffce4ec2-2670-47a0-ab1c-87e35dae0017_starwarsplanetarydata",
"003f3571-5f97-4f84-b126-f09b89e4247e_amadeus",
"0184d212-0684-4707-855c-06ede10609ec_xero",
"02f9e25f-4904-4350-8a2e-a6a0a69f9dfb_onenote",
"03c5710b-d3b1-4564-b797-2e6515b299a6_mcpmanager"
]
}