Skip to content

Commit a3e6ddc

Browse files
committed
docs: Enhance README.md with detailed prerequisites and MCP server configuration example
1 parent c2d02e0 commit a3e6ddc

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,28 @@ Aviationstack MCP is a Model Context Protocol (MCP) server for the Aviationstack
88

99
### Prerequisites
1010

11-
- Aviationstack API Key
11+
- Aviationstack API Key (You can get a FREE API Key from [Aviationstack](https://aviationstack.com/signup/free))
1212
- Python 3.10 or newer
13-
- uv package manager:
13+
- uv package manager:
14+
15+
### MCP Server configuration
16+
17+
```json
18+
{
19+
"mcpServers": {
20+
"Aviationstack MCP": {
21+
"command": "uv",
22+
"args": [
23+
"run",
24+
"--with",
25+
"mcp[cli],requests",
26+
"mcp",
27+
"run",
28+
"/path/to/your/server.py"
29+
],
30+
"env": {
31+
"AVIATION_STACK_API_KEY": "<your-api-key>"
32+
}
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)