Skip to content

Commit a622251

Browse files
committed
feat: add more servers
1 parent 1dd6c64 commit a622251

2 files changed

Lines changed: 141 additions & 0 deletions

File tree

servers/fetch.yaml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
id: fetch
2+
name: Fetch
3+
description: >-
4+
Provides web content fetching capabilities for LLMs, retrieving and converting HTML pages to markdown for easier consumption
5+
author: modelcontextprotocol
6+
url: https://github.com/modelcontextprotocol/servers/tree/main/src/fetch
7+
license: MIT
8+
category: web-scraping
9+
tags:
10+
- web-fetching
11+
- html-to-markdown
12+
- content-extraction
13+
- web-scraping
14+
- automation
15+
installations:
16+
- name: UVX
17+
config: |-
18+
{
19+
"command": "uvx",
20+
"args": ["mcp-server-fetch"]
21+
}
22+
prerequisites:
23+
- python
24+
- uv
25+
transports:
26+
- stdio
27+
- name: Docker
28+
config: |-
29+
{
30+
"command": "docker",
31+
"args": ["run", "-i", "--rm", "mcp/fetch"]
32+
}
33+
prerequisites:
34+
- Docker
35+
transports:
36+
- stdio
37+
- name: UVX + Proxy
38+
config: |-
39+
{
40+
"command": "uvx",
41+
"args": ["mcp-server-fetch", "--proxy-url=${PROXY_URL}"]
42+
}
43+
prerequisites:
44+
- python
45+
- uv
46+
parameters:
47+
- name: Proxy URL
48+
key: PROXY_URL
49+
description: URL of the HTTP/HTTPS proxy to use for outgoing requests
50+
placeholder: http://localhost:8080
51+
transports:
52+
- stdio
53+
- name: UVX + Custom User-Agent
54+
config: |-
55+
{
56+
"command": "uvx",
57+
"args": ["mcp-server-fetch", "--user-agent=${USER_AGENT}"]
58+
}
59+
prerequisites:
60+
- python
61+
- uv
62+
parameters:
63+
- name: User-Agent
64+
key: USER_AGENT
65+
description: Custom user-agent string for outgoing requests
66+
placeholder: ModelContextProtocol/1.0 (Custom; +https://github.com/modelcontextprotocol/servers)
67+
transports:
68+
- stdio
69+
featured: true
70+
verified: true

servers/vapi.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
id: vapi
2+
name: Vapi
3+
description: >-
4+
Integrates with Vapi APIs enabling voice agent automation, outbound calls, and assistant management through local or remote MCP connections.
5+
author: VapiAI
6+
url: https://github.com/VapiAI/mcp-server
7+
license: MIT
8+
category: voice-agents
9+
tags:
10+
- voice-agents
11+
- outbound-calls
12+
- automation
13+
installations:
14+
- name: Remote
15+
config: |-
16+
{
17+
"url": "https://mcp.vapi.ai/mcp",
18+
"headers": {
19+
"Authorization": "Bearer ${VAPI_TOKEN}"
20+
}
21+
}
22+
prerequisites:
23+
- Vapi account
24+
- Vapi API key
25+
parameters:
26+
- name: Vapi API Token
27+
key: VAPI_TOKEN
28+
description: API key from your Vapi dashboard (https://dashboard.vapi.ai/org/api-keys)
29+
placeholder: vapi_sk_live_xxx
30+
transports:
31+
- streamable-http
32+
- name: NPX
33+
config: |-
34+
{
35+
"command": "npx",
36+
"args": ["-y", "@vapi-ai/mcp-server"],
37+
"env": {
38+
"VAPI_TOKEN": "${VAPI_TOKEN}"
39+
}
40+
}
41+
prerequisites:
42+
- Node.js
43+
- Vapi API key
44+
parameters:
45+
- name: Vapi API Token
46+
key: VAPI_TOKEN
47+
description: API key from your Vapi dashboard (https://dashboard.vapi.ai/org/api-keys)
48+
placeholder: vapi_sk_live_xxx
49+
transports:
50+
- stdio
51+
- name: Docker
52+
config: |-
53+
{
54+
"command": "docker",
55+
"args": ["run", "-i", "--rm", "-e", "VAPI_TOKEN", "ghcr.io/vapiai/mcp-server"],
56+
"env": {
57+
"VAPI_TOKEN": "${VAPI_TOKEN}"
58+
}
59+
}
60+
prerequisites:
61+
- Docker
62+
- Vapi API key
63+
parameters:
64+
- name: Vapi API Token
65+
key: VAPI_TOKEN
66+
description: API key from your Vapi dashboard (https://dashboard.vapi.ai/org/api-keys)
67+
placeholder: vapi_sk_live_xxx
68+
transports:
69+
- stdio
70+
featured: false
71+
verified: false

0 commit comments

Comments
 (0)