-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgemini-extension.json
More file actions
62 lines (62 loc) · 2.92 KB
/
gemini-extension.json
File metadata and controls
62 lines (62 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "atxp",
"version": "1.0.0",
"description": "Give your AI agent a wallet, email, and access to paid MCP tools — web search, image/video/music generation, X search, code execution, file storage, and more. Self-register in one command, pay per use with USDC.",
"contextFileName": "GEMINI.md",
"mcpServers": {
"atxp": {
"command": "node",
"args": ["${extensionPath}${/}dist${/}server.bundle.js"],
"cwd": "${extensionPath}"
},
"atxp-search": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=search.mcp.atxp.ai"
},
"atxp-browse": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=browse.mcp.atxp.ai"
},
"atxp-image": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=image.mcp.atxp.ai"
},
"atxp-video": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=video.mcp.atxp.ai"
},
"atxp-music": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=music.mcp.atxp.ai"
},
"atxp-x-search": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=x-live-search.mcp.atxp.ai"
},
"atxp-email": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=email.mcp.atxp.ai"
},
"atxp-code": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=code.mcp.atxp.ai"
},
"atxp-filestore": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=filestore.mcp.atxp.ai"
},
"atxp-crawl": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=crawl.mcp.atxp.ai"
},
"atxp-research": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=research.mcp.atxp.ai"
},
"atxp-phone": {
"httpUrl": "https://accounts.atxp.ai?connection_token=${ATXP_CONNECTION_TOKEN}&account_id=${ATXP_ACCOUNT_ID}&server=phone.mcp.atxp.ai"
}
},
"settings": [
{
"name": "Connection Token",
"description": "Optional — your ATXP connection token. Leave blank to self-register as an agent using the atxp_register tool.",
"envVar": "ATXP_CONNECTION_TOKEN",
"sensitive": true
},
{
"name": "Account ID",
"description": "Optional — your ATXP account ID (starts with 'atxp_acct_'). Leave blank to self-register as an agent.",
"envVar": "ATXP_ACCOUNT_ID"
}
]
}