Skip to content

Commit b7c0773

Browse files
committed
Add Xquik MCP registry manifest
1 parent 6a92e54 commit b7c0773

1 file changed

Lines changed: 104 additions & 0 deletions

File tree

mcp-registry/servers/xquik.json

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"name": "xquik",
3+
"display_name": "Xquik MCP Server",
4+
"description": "Remote MCP server for X/Twitter data, search, user lookup, monitoring, webhooks, and write actions through the Xquik API.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/Xquik-dev/x-twitter-scraper"
8+
},
9+
"homepage": "https://docs.xquik.com/mcp/overview",
10+
"author": {
11+
"name": "Xquik-dev",
12+
"url": "https://github.com/Xquik-dev"
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+
"monitoring",
27+
"webhooks",
28+
"automation",
29+
"remote mcp"
30+
],
31+
"arguments": {
32+
"XQUIK_API_KEY": {
33+
"description": "Xquik API key from https://dashboard.xquik.com/en/account",
34+
"required": true,
35+
"example": "your_xquik_api_key"
36+
}
37+
},
38+
"installations": {
39+
"http": {
40+
"type": "http",
41+
"url": "https://xquik.com/mcp",
42+
"headers": {
43+
"Authorization": "Bearer ${XQUIK_API_KEY}"
44+
},
45+
"description": "Connect to the hosted Xquik MCP server using Streamable HTTP.",
46+
"recommended": true
47+
}
48+
},
49+
"tools": [
50+
{
51+
"name": "explore",
52+
"description": "Search the Xquik API catalog before making live API calls.",
53+
"inputSchema": {
54+
"type": "object",
55+
"properties": {
56+
"code": {
57+
"type": "string",
58+
"description": "JavaScript async arrow function that filters the Xquik endpoint catalog."
59+
}
60+
},
61+
"required": [
62+
"code"
63+
]
64+
}
65+
},
66+
{
67+
"name": "xquik",
68+
"description": "Execute authenticated Xquik API calls for X/Twitter data, publishing, monitors, events, webhooks, and account workflows.",
69+
"inputSchema": {
70+
"type": "object",
71+
"properties": {
72+
"code": {
73+
"type": "string",
74+
"description": "JavaScript async arrow function that calls xquik.request(path, options)."
75+
}
76+
},
77+
"required": [
78+
"code"
79+
]
80+
}
81+
}
82+
],
83+
"resources": [],
84+
"prompts": [],
85+
"examples": [
86+
{
87+
"title": "Search Tweets",
88+
"description": "Find recent X posts that match a query.",
89+
"prompt": "Use Xquik to search recent tweets about MCP registries."
90+
},
91+
{
92+
"title": "Look Up A User",
93+
"description": "Fetch normalized profile data for an X user.",
94+
"prompt": "Use Xquik to look up the X profile for @xquik."
95+
},
96+
{
97+
"title": "Monitor A Keyword",
98+
"description": "Create an account or keyword monitor when the API key has access.",
99+
"prompt": "Use Xquik to monitor new X posts mentioning my product keyword."
100+
}
101+
],
102+
"is_official": true,
103+
"is_archived": false
104+
}

0 commit comments

Comments
 (0)