Skip to content

Commit f77c072

Browse files
committed
Add Suprsonic MCP server
Unified agent API with dozens of capabilities (search, scrape, profiles, emails, images, TTS, STT, messaging, and more). One API key, zero provider auth. npm: https://www.npmjs.com/package/suprsonic-mcp Docs: https://suprsonic.ai/docs/api Signed-off-by: Yuma <yumaheymans@gmail.com>
1 parent c2fca16 commit f77c072

1 file changed

Lines changed: 79 additions & 0 deletions

File tree

servers/ai.suprsonic-mcp-npx.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "ai.suprsonic-mcp-npx",
4+
"name": "Suprsonic (npx)",
5+
"alias": "suprsonic",
6+
"description": "Unified agent API. One API key, dozens of capabilities: search, scrape, profiles, emails, images, TTS, STT, messaging, and more. Zero provider auth.",
7+
"icon": "https://suprsonic.ai/images/o-mega_icon_2.0_blue.png",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"search",
11+
"web-scraping",
12+
"ai-ml",
13+
"communication"
14+
],
15+
"tags": [
16+
"suprsonic",
17+
"unified-api",
18+
"search",
19+
"scrape",
20+
"web-scraping",
21+
"enrichment",
22+
"tts",
23+
"stt",
24+
"ai-agent",
25+
"mcp"
26+
],
27+
"transport": {
28+
"type": "stdio",
29+
"command": "npx",
30+
"args": [
31+
"-y",
32+
"suprsonic-mcp"
33+
],
34+
"env": {
35+
"SUPRSONIC_API_KEY": "${input:SUPRSONIC_API_KEY}"
36+
},
37+
"metadata": {
38+
"inputs": [
39+
{
40+
"id": "SUPRSONIC_API_KEY",
41+
"label": "Suprsonic API Key",
42+
"description": "API key for Suprsonic. Get one free at suprsonic.ai/app/apis.",
43+
"type": "text",
44+
"required": true,
45+
"secret": true,
46+
"placeholder": "omk_xxxxxxxxxxxxxxxxxxxxxxxx",
47+
"obtain": {
48+
"url": "https://suprsonic.ai/app/apis",
49+
"instructions": "1. Go to suprsonic.ai and sign in\n2. Go to the API Keys tab\n3. Click Create API Key\n4. Copy the key (starts with omk_)",
50+
"button_label": "Get API Key"
51+
}
52+
}
53+
]
54+
}
55+
},
56+
"auth": {
57+
"type": "api_key",
58+
"instructions": "Get a Suprsonic API key at https://suprsonic.ai/app/apis"
59+
},
60+
"contributor": {
61+
"name": "O-mega Enterprise",
62+
"github": "O-mega-Enterprise",
63+
"url": "https://suprsonic.ai"
64+
},
65+
"links": {
66+
"repository": "https://github.com/O-mega-Enterprise/suprsonic-mcp",
67+
"homepage": "https://suprsonic.ai",
68+
"documentation": "https://suprsonic.ai/docs/api"
69+
},
70+
"platforms": [
71+
"all"
72+
],
73+
"capabilities": {
74+
"tools": true,
75+
"resources": false,
76+
"prompts": false,
77+
"read_only_mode": false
78+
}
79+
}

0 commit comments

Comments
 (0)