Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Commit 243dc27

Browse files
committed
chore: mark package as deprecated
1 parent 77c8840 commit 243dc27

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# 🌟 Linkup Python MCP Server
22

3+
> ⚠️ **DEPRECATED**: This package is no longer maintained.
4+
>
5+
> Please use the TypeScript/Node.js version instead: **https://github.com/LinkupPlatform/linkup-mcp-server**
6+
>
7+
> The TypeScript version is actively maintained, has better performance, and supports all the latest features.
8+
39
A Model Context Protocol (MCP) server that provides web search capabilities through Linkup's advanced search API. This server enables AI assistants and development tools to perform intelligent web searches with natural language queries.
410

511
<a href="https://glama.ai/mcp/servers/69qbbv8hl9"><img width="380" height="200" src="https://glama.ai/mcp/servers/69qbbv8hl9/badge" alt="mcp-search-linkup MCP server" /></a>
@@ -14,7 +20,7 @@ A Model Context Protocol (MCP) server that provides web search capabilities thro
1420

1521
## 🚀 Installation
1622

17-
The Linkup MCP server can be used with any MCP-compatible client.
23+
The Linkup MCP server can be used with any MCP-compatible client.
1824

1925
For an integration with Claude Desktop or with Cursor, please follow instruction [here](https://docs.linkup.so/pages/integrations/mcp/mcp).
2026

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[project]
22
dependencies = ["linkup-sdk>=0.2.0", "mcp>=1.0.0"]
3-
description = "A MCP server to search web with Linkup"
3+
description = "A MCP server to search web with Linkup - **DEPRECATED** - Use the TypeScript version instead: https://github.com/LinkupPlatform/linkup-mcp-server"
44
name = "mcp-search-linkup"
55
readme = "README.md"
66
requires-python = ">=3.11"
7-
version = "0.1.5"
7+
version = "0.1.6"
88

99
[dependency-groups]
1010
dev = ["ruff>=0.8.2"]

src/mcp_search_linkup/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
import asyncio
2+
import warnings
23

34
from . import server
45

6+
warnings.warn(
7+
"mcp-search-linkup is deprecated and no longer maintained. "
8+
"Please use the TypeScript/Node.js version instead: "
9+
"https://github.com/LinkupPlatform/linkup-mcp-server",
10+
DeprecationWarning,
11+
stacklevel=2,
12+
)
13+
514

615
def main() -> None:
716
asyncio.run(server.main())

0 commit comments

Comments
 (0)