Skip to content

Instantly share code, notes, and snippets.

View zachsmith1's full-sized avatar

Zach Smith zachsmith1

View GitHub Profile
@zachsmith1
zachsmith1 / mcp-research.md
Created April 22, 2026 18:52
MCP Server Research: Open-Source Implementations from AI-Native Companies (April 2026)
const getUserChoice = (userInput) => {
userInput = userInput.toLowerCase();
if (userInput === 'rock' || userInput === 'paper' || userInput === 'scissors') {
return userInput;
} else {
console.log('error');
}
};
const getComputerChoice = () => {