MCP Server
Maintained
MIT
io.github.egoughnour/cowork-history MCP Server
io.github.egoughnour/cowork-history
What is the io.github.egoughnour/cowork-history MCP server?
Hybrid search for Cowork history: FTS, Spotlight, and semantic vectors
How to install io.github.egoughnour/cowork-history
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
OLLAMA_URLURL for Ollama server (default: http://localhost:11434)
EMBEDDING_MODELOllama embedding model (default: nomic-embed-text)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cowork-history": {
"command": "uvx",
"args": [
"cowork-history"
],
"env": {
"OLLAMA_URL": "<YOUR_OLLAMA_URL>",
"EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cowork-history": {
"command": "uvx",
"args": [
"cowork-history"
],
"env": {
"OLLAMA_URL": "<YOUR_OLLAMA_URL>",
"EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cowork-history": {
"command": "uvx",
"args": [
"cowork-history"
],
"env": {
"OLLAMA_URL": "<YOUR_OLLAMA_URL>",
"EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"cowork-history": {
"type": "stdio",
"command": "uvx",
"args": [
"cowork-history"
],
"env": {
"OLLAMA_URL": "<YOUR_OLLAMA_URL>",
"EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>"
}
}
}
}Claude Code
claude mcp add cowork-history --env OLLAMA_URL=<YOUR_OLLAMA_URL> --env EMBEDDING_MODEL=<YOUR_EMBEDDING_MODEL> -- uvx cowork-historyRelated MCP servers
io.github.egoughnour/massive-context-mcp
Maintained
Handles 10M+ token contexts with chunking, sub-queries, and local Ollama inference.
1
View repository →Python
MIT
io.github.egoughnour/code-firewall-mcp
Maintained
Structural similarity-based code filter. Stops malicious code pattern reaching execution tools.
0
View repository →Python
MIT
Curate-Ipsum
Maintained
Code synthesis through belief revision, mutation testing, and verification
0
View repository →Python
MIT