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

Commit c7df230

Browse files
Merge pull request #2 from LinkupPlatform/fix/readme-npx-command
Use correct npx command inside the README.md
2 parents 466f447 + 88769db commit c7df230

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22

33
This package provides a [Model Context Protocol](https://modelcontextprotocol.com/) server for integrating Linkup's web search functionality with AI models that support function calling through MCP.
44

5+
You can check the NPM page [here](https://www.npmjs.com/package/linkup-mcp-server).
6+
57
## Installation & Usage
68

79
You can run the Linkup MCP server directly using npx:
810

911
```bash
10-
npx -y linkup-mcp --api-key=YOUR_LINKUP_API_KEY
12+
npx -y linkup-mcp-server --api-key=YOUR_LINKUP_API_KEY
1113
```
1214

1315
Alternatively, you can set your API key as an environment variable:
1416

1517
```bash
1618
export LINKUP_API_KEY=YOUR_LINKUP_API_KEY
17-
npx -y linkup-mcp
19+
npx -y linkup-mcp-server
1820
```
1921

2022
# Command Line Options
@@ -36,7 +38,7 @@ To ensure compatibility with Claude, we recommend that `npx` command be accessib
3638
"mcpServers": {
3739
"linkup": {
3840
"command": "npx",
39-
"args": ["-y", "linkup-mcp"],
41+
"args": ["-y", "linkup-mcp-server"],
4042
"env": {
4143
"LINKUP_API_KEY": "YOUR_LINKUP_API_KEY"
4244
}
@@ -52,7 +54,7 @@ or
5254
"mcpServers": {
5355
"linkup": {
5456
"command": "npx",
55-
"args": ["-y", "linkup-mcp", "--api-key=YOUR_LINKUP_API_KEY"]
57+
"args": ["-y", "linkup-mcp-server", "--api-key=YOUR_LINKUP_API_KEY"]
5658
}
5759
}
5860
}
@@ -69,8 +71,8 @@ or
6971
Clone the repository and install dependencies:
7072

7173
```bash
72-
git clone [email protected]:LinkupPlatform/linkup-js-mcp.git
73-
cd linkup-js-mcp
74+
git clone [email protected]:LinkupPlatform/js-mcp-server.git
75+
cd js-mcp-server
7476
npm install
7577
```
7678

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)