MCP Server
Maintained
Apache-2.0
io.github.shofer-dev/slang-workflows MCP Server
io.github.shofer-dev/slang-workflows
What is the io.github.shofer-dev/slang-workflows MCP server?
Provable, declarative multi-agent workflows for Claude Code (typed .slang, non-LLM executor).
How to install io.github.shofer-dev/slang-workflows
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"slang-workflows": {
"command": "npx",
"args": [
"-y",
"slang-workflows"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"slang-workflows": {
"command": "npx",
"args": [
"-y",
"slang-workflows"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"slang-workflows": {
"command": "npx",
"args": [
"-y",
"slang-workflows"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"slang-workflows": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"slang-workflows"
]
}
}
}Claude Code
claude mcp add slang-workflows -- npx -y slang-workflowsRelated MCP servers
Persistent, read-only codebase memory for Claude Code; ask it instead of re-reading files.
7
View repository →Python
Apache-2.0