M
MCP Agent
by @wiseiodev
MCP server by wiseiodev
Created 4/13/2026
Updated about 4 hours ago
README
Repository documentation and setup instructions
Project Copilot
Project Copilot is a Next.js App Router application for asking questions about Jira and Azure DevOps projects through a durable per-user workspace. The initial slice ships the authenticated app shell, Google sign-in with Better Auth, Postgres + Drizzle persistence, and the Chat, Integrations, and History navigation scaffold.
Stack
- Next.js 16 App Router with
src/ - pnpm
- Better Auth with Google sign-in
- Drizzle ORM + Postgres via
DATABASE_URL - Biome
- shadcn/ui
Getting Started
- Install dependencies:
pnpm install
- Copy the example environment file and fill in your values:
cp .env.example .env.local
- Start the development server:
pnpm dev
- Open http://localhost:3000.
Environment
The app expects these variables:
DATABASE_URLBETTER_AUTH_SECRETBETTER_AUTH_URLGOOGLE_CLIENT_IDGOOGLE_CLIENT_SECRET
Scripts
pnpm dev- run the Next.js dev serverpnpm lint- run Biome checkspnpm typecheck- run TypeScript checkspnpm test- run Vitestpnpm build- run a production buildpnpm check- run lint, typecheck, tests, and buildpnpm db:generate- generate Drizzle migrations
License
MIT
Quick Setup
Installation guide for this server
Installation Command (package not published)
git clone https://github.com/wiseiodev/mcp-agent
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.
Cursor configuration (mcp.json)
{
"mcpServers": {
"wiseiodev-mcp-agent": {
"command": "git",
"args": [
"clone",
"https://github.com/wiseiodev/mcp-agent"
]
}
}
}