Skip to content

Commit d733e9d

Browse files
Update readme
1 parent ca3a7d1 commit d733e9d

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

README.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Big thanks to the MCP community for their support and guidance!
2424
### Running with npx
2525

2626
```bash
27-
env NASA_API_KEY=YOUR_API_KEY npx -y @ProgramComputer/NASA-MCP-server
27+
env NASA_API_KEY=YOUR_API_KEY npx -y @programcomputer/nasa-mcp-server
2828
```
2929

3030
### Using SuperGateway for Server-Sent Events (SSE)
@@ -53,17 +53,25 @@ Configuring Cursor 🖥️ Note: Requires Cursor version 0.45.6+
5353

5454
To configure NASA MCP Server in Cursor:
5555

56-
1. Open Cursor Settings
57-
2. Go to Features > MCP Servers
58-
3. Click "+ Add New MCP Server"
59-
4. Enter the following:
60-
* Name: "nasa-mcp" (or your preferred name)
61-
* Type: "command"
62-
* Command: `env NASA_API_KEY=your-api-key npx -y @ProgramComputer/NASA-MCP-server`
56+
Create or edit an `mcp.json` file in your Cursor configuration directory with the following content:
57+
58+
```json
59+
{
60+
"mcpServers": {
61+
"nasa-mcp": {
62+
"command": "npx",
63+
"args": ["-y", "@programcomputer/nasa-mcp-server"],
64+
"env": {
65+
"NASA_API_KEY": "your-api-key"
66+
}
67+
}
68+
}
69+
}
70+
```
6371

6472
Replace `your-api-key` with your NASA API key from https://api.nasa.gov/.
6573

66-
After adding, refresh the MCP server list to see the new NASA tools. The Composer Agent will automatically use NASA MCP when appropriate for space-related queries.
74+
After adding the configuration, restart Cursor to see the new NASA tools. The Composer Agent will automatically use NASA MCP when appropriate for space-related queries.
6775

6876
## Environment Variables
6977

0 commit comments

Comments
 (0)