Search the web in real time to get trustworthy, source-backed answers. Find the latest news and co…
{
"mcpServers": {
"ai-smithery-linkupplatform-linkup-mcp-server": {
"args": [
"-y",
"@smithery/cli"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Search the web in real time to get trustworthy, source-backed answers. Find the latest news and co…
Is it safe?
No known CVEs for @smithery/cli.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 62 days ago. 26 stars. 19,044 weekly downloads.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@smithery/cli' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Manage Supabase projects — databases, auth, storage, and edge functions
Query and manage PostgreSQL databases directly from AI assistants
An official Qdrant Model Context Protocol (MCP) server implementation
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for LinkupPlatform Linkup MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides web search and page fetching capabilities through Linkup's advanced API. This server enables AI assistants like Claude to perform intelligent web searches with natural language queries and fetch content from any webpage, accessing real-time information from trusted sources across the web.
standard - For queries with direct answersdeep - For complex research requiring analysis across multiple sourcesYou can access the MCP server directly through Smithery. From there, you'll be able to install the server into your favorite MCP compatible client. The remote MCP server is using the Streamable HTTP transport.
You can also use the Smithery CLI to install the server into your favorite MCP compatible client.
npx @smithery/cli login # If you haven't already
npx -y @smithery/cli@latest install linkup-mcp-server --client <CLIENT_NAME> --config '{"apiKey":<LINKUP_API_KEY>}'
Finally, if your client supports OAuth protocol, you can reference directly the remote MCP server URL. See examples below:
In your ~/.cursor/mcp.json file, add the following:
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"type": "http",
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
}
}
}
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
{
"servers": {
// ... other MCP servers
"linkup": {
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY",
"type": "http"
}
}
}
Download the pre-built MCP bundle, a self-contained package that works across compatible MCP clients (like Claude Desktop for example). MCP Bundles are developed by Anthropics see here for more info.
Quick Download:
curl -L -o linkup-mcp-server.mcpb https://github.com/LinkupPlatform/linkup-mcp-server/releases/latest/download/linkup-mcp-server.mcpb
Installation:
linkup-mcp-server.mcpb from releases (or use the curl command above)You can also run the MCP server locally through the stdio transport.
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"command": "npx",
"args": [
"-y",
"linkup-mcp-server",
"api
... [View full README on GitHub](https://github.com/LinkupPlatform/linkup-mcp-server#readme)