We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/polaralias/ClickUp-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•846 B
# Example MCP servers
This directory contains minimal reference implementations that mirror the transports ClickUp-MCP-Server supports.
## Streamable HTTP
`examples/basic/streamableHttp.ts` starts an Express application that exposes Streamable HTTP on both `/mcp` and `/`. It supports `POST` for JSON-RPC requests plus `GET` and `DELETE` for session management, matching Smithery's expectations. The server registers a `ping` tool and a `hello://world` resource so clients can exercise both discovery and invocation paths.
Run it with:
```sh
npm exec tsx examples/basic/streamableHttp.ts
```
## stdio
`examples/basic/stdio.ts` demonstrates the stdio transport. It registers the same `ping` tool and `hello://world` resource and waits for a client to connect over stdin/stdout.
Run it with:
```sh
npm exec tsx examples/basic/stdio.ts
```