The SmileyCoin website is a React-based platform that provides information about the SmileyCoin cryptocurrency. The site features a live price tracker and comprehensive information across multiple pages including introduction, getting started guides, wallet options, and details about the coin and mining.
First, you need to install Node.js:
node -v
npm -v
npm install
To run the application in development mode:
npm start
This will launch the app at http://localhost:3000 in your browser. The page will automatically reload when you make changes to the code.
To create a production build:
npm run build
This command builds the app for production in the build
folder, with optimized performance and minified code.
The site can be deployed to GitHub Pages with these commands:
npm run build
npm run deploy
npm run build
sudo npm install -g pm2
{
"scripts": {
"deploy": "pm2 start ./server.sh --name yourAppName"
}
}
echo "Serving yourAppName!"
serve -s build
chmod +x server.sh
npm run deploy
To configure PM2 to start on system boot, refer to the PM2 documentation at http://pm2.keymetrics.io/docs/usage/startup/
The website consists of:
The site also features a Twitter feed from @smileyCoinNews on the home page.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "vercel-api" '{"command":"npx","args":["-y","vercel-api-mcp"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"vercel-api": {
"command": "npx",
"args": [
"-y",
"vercel-api-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"vercel-api": {
"command": "npx",
"args": [
"-y",
"vercel-api-mcp"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect