We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d02e0 commit a3e6ddcCopy full SHA for a3e6ddc
README.md
@@ -8,6 +8,28 @@ Aviationstack MCP is a Model Context Protocol (MCP) server for the Aviationstack
8
9
### Prerequisites
10
11
-- Aviationstack API Key
+- Aviationstack API Key (You can get a FREE API Key from [Aviationstack](https://aviationstack.com/signup/free))
12
- Python 3.10 or newer
13
-- uv package manager:
+- 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
28
+ "/path/to/your/server.py"
29
+ ],
30
+ "env": {
31
+ "AVIATION_STACK_API_KEY": "<your-api-key>"
32
+ }
33
34
35
+}
0 commit comments