Venrey Software_
[email protected]
Demo MCP server
A public Model Context Protocol server you can connect any MCP client to. No auth required.
Endpoint
Available methods
core_skills
tool
Returns Sebastian's core technical skills grouped by category (languages, front-end, back-end, AI/LLM, data & infra, payments, quality & analytics, practices). Ask what technologies, frameworks, or practices he knows, or whether he has experience with a specific tool. Output is plain text, one category per line as Label: item, item, ....
-
categorystring · optional One oflanguages,frontend,backend,ai,data-infra,payments,quality,practices. Omit for all categories.
Try it
List tools:
curl -X POST https://demo-mcp.venrey.dev/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
Call core_skills:
curl -X POST https://demo-mcp.venrey.dev/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
"params":{"name":"core_skills","arguments":{"category":"ai"}}}'
# → {"result":{"content":[{"type":"text","text":"AI / LLM: LLM integration & evaluation"}]},...}
Connect a client
Claude Code:
claude mcp add --transport http venrey-demo https://demo-mcp.venrey.dev/mcp
Generic mcp.json / Claude Desktop / Cursor style config:
{
"mcpServers": {
"venrey-demo": { "url": "https://demo-mcp.venrey.dev/mcp" }
}
}
Method list reflects the live tools/list response at the time of publishing. Questions: [email protected]