What is the Unwritten MCP server?
Catches files and C# members you forgot to change, learned from your repo's git history
How to install Unwritten
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": {
"unwritten": {
"command": "dnx",
"args": [
"Unwritten"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"unwritten": {
"command": "dnx",
"args": [
"Unwritten"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"unwritten": {
"command": "dnx",
"args": [
"Unwritten"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"unwritten": {
"type": "stdio",
"command": "dnx",
"args": [
"Unwritten"
]
}
}
}Claude Code
claude mcp add unwritten -- dnx UnwrittenRelated MCP servers
TokenSaver
Active
Structural warm start for AI coding agents in .NET: cheap Roslyn signature maps of C#/.NET files.
3
View repository →C#
MIT
McpOrchestrator
Active
Route one agent through one MCP server to many, with progressive tool discovery to shrink context.
1
View repository →C#
MIT