From 7946a625321dd782325ebe667b46278c7507fbe7 Mon Sep 17 00:00:00 2001 From: Owl Date: Thu, 16 Apr 2026 06:43:04 -0700 Subject: [PATCH 1/2] Add Not Human Search and AI Dev Jobs MCP servers - Not Human Search: AI tool discovery engine with 8,600+ tools and MCP servers (https://nothumansearch.ai/mcp) - AI Dev Jobs: AI/ML job search across 5,500+ curated roles from 280+ companies (https://aidevboard.com/mcp) Both are HTTP (streamable-http) transport, no authentication required, read-only. Signed-off-by: unitedideas Signed-off-by: Owl --- servers/ai.nothumansearch-mcp-http.json | 56 +++++++++++++++++++++++++ servers/com.aidevboard-mcp-http.json | 56 +++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 servers/ai.nothumansearch-mcp-http.json create mode 100644 servers/com.aidevboard-mcp-http.json diff --git a/servers/ai.nothumansearch-mcp-http.json b/servers/ai.nothumansearch-mcp-http.json new file mode 100644 index 0000000..6825435 --- /dev/null +++ b/servers/ai.nothumansearch-mcp-http.json @@ -0,0 +1,56 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "ai.nothumansearch-mcp-http", + "name": "Not Human Search", + "alias": "nothumansearch", + "description": "AI tool discovery engine. Search 8,600+ AI tools and MCP servers by keyword, category, or capability. Includes live MCP endpoint verification via JSON-RPC probe.", + "icon": "https://nothumansearch.ai/favicon.svg", + "schema_version": "2.1", + "categories": [ + "search", + "ai-ml", + "developer-tools" + ], + "tags": [ + "ai-tools", + "mcp-servers", + "search", + "discovery", + "ai-directory", + "tool-discovery" + ], + + "transport": { + "type": "http", + "url": "https://nothumansearch.ai/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "none", + "instructions": "No authentication required. All endpoints are publicly accessible." + }, + + "contributor": { + "name": "unitedideas", + "github": "unitedideas", + "url": "https://nothumansearch.ai" + }, + + "links": { + "repository": "https://github.com/unitedideas/nothumansearch", + "homepage": "https://nothumansearch.ai", + "documentation": "https://nothumansearch.ai/llms.txt" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": true + } +} diff --git a/servers/com.aidevboard-mcp-http.json b/servers/com.aidevboard-mcp-http.json new file mode 100644 index 0000000..131723a --- /dev/null +++ b/servers/com.aidevboard-mcp-http.json @@ -0,0 +1,56 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.aidevboard-mcp-http", + "name": "AI Dev Jobs", + "alias": "aidevjobs", + "description": "AI and ML job search across 5,500+ curated roles from 280+ companies. Filter by title, location, company, level, and work arrangement.", + "icon": "https://aidevboard.com/favicon.svg", + "schema_version": "2.1", + "categories": [ + "search", + "ai-ml" + ], + "tags": [ + "jobs", + "ai-jobs", + "ml-jobs", + "career", + "hiring", + "job-search", + "job-board" + ], + + "transport": { + "type": "http", + "url": "https://aidevboard.com/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "none", + "instructions": "No authentication required. All endpoints are publicly accessible." + }, + + "contributor": { + "name": "unitedideas", + "github": "unitedideas", + "url": "https://aidevboard.com" + }, + + "links": { + "repository": "https://github.com/unitedideas/aidevboard", + "homepage": "https://aidevboard.com", + "documentation": "https://aidevboard.com/llms.txt" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": true + } +} From 2dc947b37735db071f7e70156470aea9486648dc Mon Sep 17 00:00:00 2001 From: Owl Date: Sat, 18 Apr 2026 01:22:05 -0700 Subject: [PATCH 2/2] Refresh NHS + AI Dev Jobs server.json descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both entries' descriptions had drifted from reality: - Not Human Search claimed "8,600+ AI tools" (likely a copy-paste from AI Dev Jobs' job count) — NHS actually indexes ~1,962 agent-ready sites. Bumped to "1,900+ agent-ready sites" and enumerated the new tools (10 now — recent_additions, find_mcp_servers, verify_mcp, list_categories, get_top_sites on top of the original 5). - AI Dev Jobs claimed "5,500+ roles from 280+ companies" — actual live numbers are 8,618 / 513 / 569 sources. Bumped to round-down floors (8,600+ / 510+) and enumerated the new tools (9 now — trending companies, posted-within-days, enriched stats). Also fixed a broken repo link: github.com/unitedideas/aidevboard → ai-dev-jobs. Validates via npm run validate on both. PR #109 on mcpmux/mcp-servers picks these up automatically. --- servers/ai.nothumansearch-mcp-http.json | 2 +- servers/com.aidevboard-mcp-http.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/servers/ai.nothumansearch-mcp-http.json b/servers/ai.nothumansearch-mcp-http.json index 6825435..af28f16 100644 --- a/servers/ai.nothumansearch-mcp-http.json +++ b/servers/ai.nothumansearch-mcp-http.json @@ -3,7 +3,7 @@ "id": "ai.nothumansearch-mcp-http", "name": "Not Human Search", "alias": "nothumansearch", - "description": "AI tool discovery engine. Search 8,600+ AI tools and MCP servers by keyword, category, or capability. Includes live MCP endpoint verification via JSON-RPC probe.", + "description": "AI tool discovery engine. Search 1,900+ agent-ready sites and MCP servers by keyword, category, or capability. 10 tools including live MCP endpoint verification via JSON-RPC probe, a recently-indexed feed, and per-signal filters (MCP / OpenAPI / llms.txt).", "icon": "https://nothumansearch.ai/favicon.svg", "schema_version": "2.1", "categories": [ diff --git a/servers/com.aidevboard-mcp-http.json b/servers/com.aidevboard-mcp-http.json index 131723a..2eccfb8 100644 --- a/servers/com.aidevboard-mcp-http.json +++ b/servers/com.aidevboard-mcp-http.json @@ -3,7 +3,7 @@ "id": "com.aidevboard-mcp-http", "name": "AI Dev Jobs", "alias": "aidevjobs", - "description": "AI and ML job search across 5,500+ curated roles from 280+ companies. Filter by title, location, company, level, and work arrangement.", + "description": "AI and ML job search across 8,600+ curated roles from 510+ companies. 9 tools including filter-by-tag, salary benchmarks, candidate-profile matching, posted-within-days freshness filter, trending-tags and trending-companies pulse, plus full company detail. Daily scraper refresh from 560+ ATS sources.", "icon": "https://aidevboard.com/favicon.svg", "schema_version": "2.1", "categories": [ @@ -40,7 +40,7 @@ }, "links": { - "repository": "https://github.com/unitedideas/aidevboard", + "repository": "https://github.com/unitedideas/ai-dev-jobs", "homepage": "https://aidevboard.com", "documentation": "https://aidevboard.com/llms.txt" },