Spaces:
Running
Running
File size: 512 Bytes
f326613 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import type { MCPServerConfig } from "../types/mcp";
export const MCP_SERVERS: MCPServerConfig[] = [
{
id: "hf-transformers-demo-gitmcp",
name: "HuggingFace Transformers.js Documentation",
url: "https://gitmcp.io/huggingface/transformers.js",
enabled: true,
transport: "streamable-http",
},
{
id: "mcp-servers-docs",
name: "MCP Documentation",
url: "https://gitmcp.io/modelcontextprotocol/modelcontextprotocol",
enabled: true,
transport: "streamable-http",
},
];
|