@toolsdk.ai/registry 1.0.141 → 1.0.142

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1057,6 +1057,7 @@ Find and extract data from various sources quickly and efficiently.
1057
1057
  - [✅ mcp-server-reddit](https://github.com/hawstein/mcp-server-reddit): Integrates with Reddit's API to fetch and retrieve diverse content including posts, comments, and subreddit information for data analysis and content curation. (8 tools) (python)
1058
1058
  - [✅ mcp-tavily-search](https://github.com/spences10/mcp-tavily-search): Integrates with Tavily's semantic search API to enable web searches and retrieval of relevant results for fact-checking and research tasks. (3 tools) (node)
1059
1059
  - [✅ mcp-trends-hub](https://github.com/baranwang/mcp-trends-hub): Provides real-time access to trending topics and content from major Chinese platforms including Weibo, Zhihu, Douyin, Bilibili, Douban, Toutiao, and 36kr through separate tools with temporary caching for improved performance. (21 tools) (node)
1060
+ - [✅ mcp/tavily](https://github.com/tavily-ai/tavily-mcp): Tavily is a search engine optimized for LLMs and RAG, aimed at efficient, quick and persistent search results. (Docker Runtime) (4 tools) (docker)
1060
1061
  - [✅ news-mcp-server](https://github.com/anurag-dhamala/news-mcp-server): Fetches the latest news and sources based on country and language using newsdata.io. (3 tools) (node)
1061
1062
  - [✅ newsnow-mcp-server](https://github.com/ourongxing/newsnow-mcp-server): Provides a bridge to the NewsNow platform for retrieving trending and latest news from various sources with customizable result limits and markdown-formatted output. (1 tools) (node)
1062
1063
  - [✅ npm-search-mcp-server](https://github.com/btwiuse/npm-search-mcp-server): Enables npm package searches via CLI, facilitating JavaScript library discovery and dependency management (1 tools) (node)
@@ -68,6 +68,16 @@ async function getNodeMcpClient(mcpServerConfig, env) {
68
68
  });
69
69
  return createMcpClient(mcpServerConfig, transport);
70
70
  }
71
+ async function getDockerMcpClient(mcpServerConfig, env) {
72
+ const { binArgs } = mcpServerConfig;
73
+ const args = binArgs || [];
74
+ const transport = new StdioClientTransport({
75
+ command: "docker",
76
+ args,
77
+ env: Object.assign(Object.assign({}, Object.fromEntries(Object.entries(process.env).filter(([_, v]) => v !== undefined))), env),
78
+ });
79
+ return createMcpClient(mcpServerConfig, transport);
80
+ }
71
81
  async function getPyMcpClient(mcpServerConfig, env) {
72
82
  const { packageName } = mcpServerConfig;
73
83
  const pythonModuleName = packageName;
@@ -103,5 +113,8 @@ export async function getMcpClient(mcpServerConfig, env, accessToken) {
103
113
  if (runtime === "python") {
104
114
  return getPyMcpClient(mcpServerConfig, env);
105
115
  }
116
+ if (runtime === "docker") {
117
+ return getDockerMcpClient(mcpServerConfig, env);
118
+ }
106
119
  return getNodeMcpClient(mcpServerConfig, env);
107
120
  }
@@ -47632,7 +47632,26 @@
47632
47632
  }
47633
47633
  },
47634
47634
  "mcp/tavily": {
47635
+ "category": "search-data-extraction",
47635
47636
  "path": "search-data-extraction/tavily-docker-mcp-server.json",
47636
- "category": "search-data-extraction"
47637
+ "validated": true,
47638
+ "tools": {
47639
+ "tavily-search": {
47640
+ "name": "tavily-search",
47641
+ "description": "A powerful web search tool that provides comprehensive, real-time results using Tavily's AI search engine. Returns relevant web content with customizable parameters for result count, content type, and domain filtering. Ideal for gathering current information, news, and detailed web content analysis."
47642
+ },
47643
+ "tavily-extract": {
47644
+ "name": "tavily-extract",
47645
+ "description": "A powerful web content extraction tool that retrieves and processes raw content from specified URLs, ideal for data collection, content analysis, and research tasks."
47646
+ },
47647
+ "tavily-crawl": {
47648
+ "name": "tavily-crawl",
47649
+ "description": "A powerful web crawler that initiates a structured web crawl starting from a specified base URL. The crawler expands from that point like a graph, following internal links across pages. You can control how deep and wide it goes, and guide it to focus on specific sections of the site."
47650
+ },
47651
+ "tavily-map": {
47652
+ "name": "tavily-map",
47653
+ "description": "A powerful web mapping tool that creates a structured map of website URLs, allowing you to discover and analyze site structure, content organization, and navigation paths. Perfect for site audits, content discovery, and understanding website architecture."
47654
+ }
47655
+ }
47637
47656
  }
47638
47657
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.141",
3
+ "version": "1.0.142",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -5,7 +5,6 @@
5
5
  "description": "Tavily is a search engine optimized for LLMs and RAG, aimed at efficient, quick and persistent search results. (Docker Runtime)",
6
6
  "url": "https://github.com/tavily-ai/tavily-mcp",
7
7
  "runtime": "docker",
8
- "bin": "docker",
9
8
  "binArgs": ["run", "-i", "--rm", "-e", "TAVILY_API_KEY", "mcp/tavily"],
10
9
  "env": {
11
10
  "TAVILY_API_KEY": {