We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/universal-crypto-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# ⚠️ Important: Dependencies Not Installed Yet
## Current Status
The website structure and all configuration files have been successfully created. However, you'll see TypeScript errors in the editor because **dependencies have not been installed yet**.
## 🚨 Required: Install Dependencies
Before the website can run or the errors will clear, you **MUST** run:
```bash
cd /workspaces/universal-crypto-mcp/website-unified
pnpm install
```
## What This Will Install
Running `pnpm install` will install:
- Next.js 14 and React 18
- TailwindCSS and plugins
- TypeScript and type definitions
- Framer Motion for animations
- MDX processing tools
- Vercel Analytics
- All dev dependencies (ESLint, Prettier, etc.)
**Estimated time**: 2-3 minutes
**Size**: ~300-400 MB in node_modules
## After Installation
Once installed, you can:
```bash
# Start development server
pnpm dev
# Build for production
pnpm build
# Run type checking (errors should be gone)
pnpm type-check
```
## Current TypeScript Errors
The errors you see like:
- `Cannot find module 'next'`
- `Cannot find module 'react'`
- `Cannot find module 'tailwindcss'`
Are **normal and expected** before running `pnpm install`. They will automatically resolve once dependencies are installed.
## Why Not Auto-Install?
The installation step was not automated to:
1. Give you control over when to download dependencies
2. Allow review of package.json first
3. Avoid potential npm/pnpm workspace conflicts
4. Let you use your preferred package manager
## Verification
After installation, verify with:
```bash
# Check if Next.js is installed
pnpm list next
# Should show: next 14.2.0
# Check for errors
pnpm type-check
# Should show: No errors
```
---
**Next Step**: Run `pnpm install` in the website-unified directory! 🚀