alanagoyal/mcp-server
If you are the rightful owner of mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A model context protocol (MCP) server that provides AI assistants with information about Alana Goyal and Basecase, based on alanagoyal.com and basecase.vc.
@alanagoyal/mcp-server
a model context protocol (mcp) server that provides ai assistants with information about alana goyal and basecase, based on alanagoyal.com and basecase.vc. the server integrates with popular ai development environments like windsurf and cursor.
i built this using mastra and stagehand.
installation
in windsurf
create or update ~/.codeium/windsurf/mcp_config.json
:
macos/linux
{
"mcpServers": {
"basecase": {
"command": "npx",
"args": ["-y", "@alanagoyal/mcp-server@latest"]
}
}
}
windows
{
"mcpServers": {
"basecase": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@alanagoyal/mcp-server@latest"]
}
}
}
this will make all basecase documentation tools available in your windsurf workspace. note that windsurf mcp tool calling doesn't work very well. you will need to fully quit and re-open windsurf after adding this. if a tool call fails you will need to go into windsurf mcp settings and re-start the mcp server.
in cursor
create or update .cursor/mcp.json
in your project root:
macos/linux
{
"mcpServers": {
"basecase": {
"command": "npx",
"args": ["-y", "@alanagoyal/mcp-server@latest"]
}
}
}
windows
{
"mcpServers": {
"basecase": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@alanagoyal/mcp-server@latest"]
}
}
}
this will make all basecase documentation tools available in your cursor workspace. note that the mcp server won't be enabled by default. you'll need to go to cursor settings -> mcp settings and click "enable" on the basecase mcp server.