You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+60Lines changed: 60 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,66 @@ npm install -g agentql-mcp
42
42
43
43
Read more about MCP configuration in Claude [here](https://modelcontextprotocol.io/quickstart/user).
44
44
45
+
### Configure VS Code
46
+
47
+
For one-click installation, click one of the install buttons below:
48
+
49
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=agentql&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22agentql-mcp%22%5D%2C%22env%22%3A%7B%22AGENTQL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22AgentQL+API+Key%22%2C%22password%22%3Atrue%7D%5D) [](https://insiders.vscode.dev/redirect/mcp/install?name=agentql&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22agentql-mcp%22%5D%2C%22env%22%3A%7B%22AGENTQL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22AgentQL+API+Key%22%2C%22password%22%3Atrue%7D%5D&quality=insiders)
50
+
51
+
#### Manual Installation
52
+
53
+
Click the install buttons at the top of this section for the quickest installation method. For manual installation, follow these steps:
54
+
55
+
Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
56
+
57
+
```json
58
+
{
59
+
"mcp": {
60
+
"inputs": [
61
+
{
62
+
"type": "promptString",
63
+
"id": "apiKey",
64
+
"description": "AgentQL API Key",
65
+
"password": true
66
+
}
67
+
],
68
+
"servers": {
69
+
"agentql": {
70
+
"command": "npx",
71
+
"args": ["-y", "agentql-mcp"],
72
+
"env": {
73
+
"AGENTQL_API_KEY": "${input:apiKey}"
74
+
}
75
+
}
76
+
}
77
+
}
78
+
}
79
+
```
80
+
81
+
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.
0 commit comments