@agentaeo/mcp-server 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +7 -2
- package/dist/index.js +1 -1
- package/package.json +14 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AIMetica Solutions LLP
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @agentaeo/mcp-server
|
|
2
2
|
|
|
3
|
+
[](https://glama.ai/mcp/servers/agentaeo/agentaeo-mcp-server)
|
|
4
|
+
[](https://glama.ai/mcp/servers/agentaeo/agentaeo-mcp-server)
|
|
5
|
+
|
|
3
6
|
MCP (Model Context Protocol) server for [AgentAEO](https://agentaeo.com) — run AEO (Answer Engine Optimization) audits across ChatGPT, Perplexity, Claude, and Google AI.
|
|
4
7
|
|
|
5
8
|
**Source:** [`agentaeo/agentaeo-mcp-server`](https://github.com/agentaeo/agentaeo-mcp-server) on GitHub (local folder name: `agentaeo-mcp-server`).
|
|
@@ -84,7 +87,7 @@ After editing the config, **fully quit Claude Desktop** (Cmd+Q) and reopen. Chec
|
|
|
84
87
|
|
|
85
88
|
**Env (optional):** `AGENTAEO_MCP_INLINE_POLL=1` — long poll inside `run_aeo_audit`. `AGENTAEO_MCP_INLINE_CONTENT_POLL=1` — long poll inside `generate_aeo_content_suite` (both can exceed Claude Desktop’s ~60s tool limit). **`AGENTAEO_MCP_DOWNLOAD_DIR`** — where to save Content Suite ZIPs from `download_aeo_content_suite_zip`.
|
|
86
89
|
|
|
87
|
-
**Terminal:** `download-content.mjs` — set `AGENTAEO_API_KEY` (or read from Claude Desktop config on Mac); optional `
|
|
90
|
+
**Terminal:** `download-content.mjs` — set **`ORDER_ID`** (completed content order UUID), `AGENTAEO_API_KEY` (or read from Claude Desktop config on Mac); optional `OUT_FILE`.
|
|
88
91
|
|
|
89
92
|
### Why your agent can’t `curl` with `$AGENTAEO_API_KEY`
|
|
90
93
|
|
|
@@ -122,4 +125,6 @@ npm publish --access public
|
|
|
122
125
|
|
|
123
126
|
## License
|
|
124
127
|
|
|
125
|
-
MIT
|
|
128
|
+
[MIT](LICENSE) — AIMetica Solutions LLP.
|
|
129
|
+
|
|
130
|
+
**Glama / directories:** See [docs/GLAMA.md](docs/GLAMA.md) for claiming authorship and score checklist.
|
package/dist/index.js
CHANGED
|
@@ -52,7 +52,7 @@ async function main() {
|
|
|
52
52
|
const inlineContentPoll = process.env.AGENTAEO_MCP_INLINE_CONTENT_POLL === "1" || process.env.AGENTAEO_MCP_INLINE_CONTENT_POLL === "true";
|
|
53
53
|
const server = new McpServer({
|
|
54
54
|
name: "agentaeo",
|
|
55
|
-
version: "0.1.
|
|
55
|
+
version: "0.1.8",
|
|
56
56
|
});
|
|
57
57
|
server.tool("run_aeo_audit", "Start an AEO audit for a URL (async). Returns auditId immediately. Then call check_aeo_audit_status every 10–15s until is_complete or free_preview_ready (free tier stops at step 2).", {
|
|
58
58
|
url: z.string().url().describe("The website URL to audit (e.g. https://example.com)"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentaeo/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "MCP server for AgentAEO — run AEO audits across ChatGPT, Perplexity, Claude, and Google AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"README.md"
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
15
16
|
"build": "tsc",
|
|
@@ -20,11 +21,21 @@
|
|
|
20
21
|
},
|
|
21
22
|
"keywords": [
|
|
22
23
|
"mcp",
|
|
24
|
+
"mcp-server",
|
|
23
25
|
"agentaeo",
|
|
24
26
|
"aeo",
|
|
25
27
|
"answer-engine-optimization",
|
|
26
|
-
"ai-search"
|
|
28
|
+
"ai-search",
|
|
29
|
+
"seo",
|
|
30
|
+
"marketing",
|
|
31
|
+
"brand-visibility",
|
|
32
|
+
"analytics",
|
|
33
|
+
"chatgpt",
|
|
34
|
+
"perplexity",
|
|
35
|
+
"claude",
|
|
36
|
+
"google-ai"
|
|
27
37
|
],
|
|
38
|
+
"mcpName": "io.github.digitaldatadriven/agentaeo-mcp-server",
|
|
28
39
|
"author": "AIMetica Solutions LLP <agents@agentaeo.com>",
|
|
29
40
|
"license": "MIT",
|
|
30
41
|
"repository": {
|