-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp_servers.cl.jac
More file actions
156 lines (155 loc) · 6.15 KB
/
mcp_servers.cl.jac
File metadata and controls
156 lines (155 loc) · 6.15 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
"""Central MCP server registry – add new servers here."""
def:pub getMcpServers -> list {
return [
{
"id": "jac-mcp",
"name": "Jac Language",
"namespace": "jaseci.org",
"transport": "http",
"description": "Official Jac programming language MCP server. Validate, format, and convert Jac code with access to full language docs, grammar, and examples.",
"url": "builtin://jac-mcp",
"auth": "none",
"authRequired": False
},
{
"id": "jasketch",
"name": "JaSketch",
"namespace": "jasketch.jaseci.org",
"transport": "http",
"description": "JaSketch MCP server. Programmatically create and manipulate diagrams on a live canvas — shapes, arrows, text, and more.",
"url": "builtin://jasketch",
"auth": "none",
"authRequired": False
},
{
"id": "github-copilot",
"name": "GitHub Copilot",
"namespace": "github.com",
"transport": "http",
"description": "Official GitHub Copilot MCP server. Access Copilot-powered AI capabilities via Streamable HTTP.",
"url": "https://api.githubcopilot.com/mcp/",
"auth": "bearer",
"authRequired": True
},
{
"id": "webzum",
"name": "WebZum",
"namespace": "webzum.com",
"transport": "http",
"description": "WebZum MCP server providing web-based tools and integrations via Streamable HTTP.",
"url": "https://webzum.com/api/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "astro-docs",
"name": "Astro Docs",
"namespace": "docs.astro.build",
"transport": "http",
"description": "Official Astro documentation MCP server. Query and explore the full Astro framework documentation.",
"url": "https://mcp.docs.astro.build/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "exa-search",
"name": "Exa Search",
"namespace": "exa.ai",
"transport": "http",
"description": "Exa AI-powered search MCP server. Perform semantic web searches and retrieve structured results.",
"url": "https://mcp.exa.ai/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "hugging-face",
"name": "Hugging Face",
"namespace": "hf.co",
"transport": "http",
"description": "Official Hugging Face MCP server. Access models, datasets, and AI resources from the Hugging Face hub.",
"url": "https://hf.co/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "remote-mcp",
"name": "Remote MCP",
"namespace": "remote-mcp.com",
"transport": "http",
"description": "Remote MCP server providing remote tool execution and integration capabilities via Streamable HTTP.",
"url": "https://mcp.remote-mcp.com",
"auth": "none",
"authRequired": False
},
{
"id": "manifold",
"name": "Manifold",
"namespace": "manifold.markets",
"transport": "http",
"description": "Manifold Markets MCP server. Access prediction market data, questions, and trading information.",
"url": "https://api.manifold.markets/v0/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "javadocs",
"name": "Javadocs",
"namespace": "javadocs.dev",
"transport": "http",
"description": "Javadocs MCP server. Search and query Java API documentation from across the Java ecosystem.",
"url": "https://www.javadocs.dev/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "ferryhopper",
"name": "Ferryhopper",
"namespace": "ferryhopper.com",
"transport": "http",
"description": "Ferryhopper MCP server. Access ferry routes, schedules, and booking data across the Mediterranean.",
"url": "https://mcp.ferryhopper.com/mcp",
"auth": "none",
"authRequired": False
},
{
"id": "coingecko",
"name": "CoinGecko",
"namespace": "coingecko.com",
"transport": "sse",
"description": "CoinGecko cryptocurrency data platform MCP server. Access real-time and historical prices, market caps, trading volumes, and crypto metadata.",
"url": "https://mcp.api.coingecko.com/sse",
"auth": "none",
"authRequired": False
},
{
"id": "livescore",
"name": "LiveScore MCP",
"namespace": "livescoremcp.com",
"transport": "sse",
"description": "LiveScore MCP server. Access live sports scores, fixtures, results, and standings across major leagues and competitions.",
"url": "https://livescoremcp.com/sse",
"auth": "none",
"authRequired": False
},
{
"id": "tweetsave",
"name": "TweetSave",
"namespace": "tweetsave.org",
"transport": "sse",
"description": "TweetSave MCP server. Save, search, and retrieve tweets and social media content via SSE transport.",
"url": "https://mcp.tweetsave.org/sse",
"auth": "none",
"authRequired": False
},
{
"id": "cloudflare-docs",
"name": "Cloudflare Docs",
"namespace": "cloudflare.com",
"transport": "sse",
"description": "Official Cloudflare documentation MCP server. Query the full Cloudflare developer docs, Workers, Pages, R2, D1, and platform references.",
"url": "https://docs.mcp.cloudflare.com/sse",
"auth": "none",
"authRequired": False
}
];
}