Skip to content

Commit 3c2f0a1

Browse files
committed
Add GetXAPI MCP server manifest
1 parent 6a92e54 commit 3c2f0a1

1 file changed

Lines changed: 97 additions & 0 deletions

File tree

mcp-registry/servers/getxapi.json

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
{
2+
"name": "getxapi",
3+
"display_name": "GetXAPI MCP Server",
4+
"description": "Remote MCP server for X/Twitter data, search, user lookup, and timeline retrieval through the GetXAPI API.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/getxapi/getxapi-mcp"
8+
},
9+
"homepage": "https://getxapi.com",
10+
"author": {
11+
"name": "GetXAPI",
12+
"url": "https://github.com/getxapi"
13+
},
14+
"license": "MIT",
15+
"categories": [
16+
"Web Services",
17+
"Analytics",
18+
"Messaging"
19+
],
20+
"tags": [
21+
"x",
22+
"twitter",
23+
"social media",
24+
"tweet search",
25+
"user lookup",
26+
"timeline",
27+
"remote mcp"
28+
],
29+
"arguments": {
30+
"GETXAPI_API_KEY": {
31+
"description": "GetXAPI API key from https://getxapi.com",
32+
"required": true,
33+
"example": "your_getxapi_api_key"
34+
}
35+
},
36+
"installations": {
37+
"http": {
38+
"type": "http",
39+
"url": "https://api.getxapi.com/mcp",
40+
"headers": {
41+
"Authorization": "Bearer ${GETXAPI_API_KEY}"
42+
},
43+
"description": "Connect to the hosted GetXAPI MCP server using Streamable HTTP.",
44+
"recommended": true
45+
}
46+
},
47+
"tools": [
48+
{
49+
"name": "search_tweets",
50+
"description": "Search recent X/Twitter posts that match a query through the GetXAPI advanced search endpoint.",
51+
"inputSchema": {
52+
"type": "object",
53+
"properties": {
54+
"query": {
55+
"type": "string",
56+
"description": "Search query string passed to the GetXAPI advanced_search endpoint."
57+
}
58+
},
59+
"required": [
60+
"query"
61+
]
62+
}
63+
},
64+
{
65+
"name": "get_user",
66+
"description": "Fetch normalized profile data for an X/Twitter user by username through the GetXAPI user endpoint.",
67+
"inputSchema": {
68+
"type": "object",
69+
"properties": {
70+
"username": {
71+
"type": "string",
72+
"description": "X/Twitter username without the leading @."
73+
}
74+
},
75+
"required": [
76+
"username"
77+
]
78+
}
79+
}
80+
],
81+
"resources": [],
82+
"prompts": [],
83+
"examples": [
84+
{
85+
"title": "Search Tweets",
86+
"description": "Find recent X posts that match a query.",
87+
"prompt": "Use GetXAPI to search recent tweets about MCP registries."
88+
},
89+
{
90+
"title": "Look Up A User",
91+
"description": "Fetch normalized profile data for an X user.",
92+
"prompt": "Use GetXAPI to look up the X profile for @getxapi."
93+
}
94+
],
95+
"is_official": false,
96+
"is_archived": false
97+
}

0 commit comments

Comments
 (0)