M
MCP Suite
MCP server by KyubinoKitsune-ace
Created 2/11/2026
Updated about 21 hours ago
README
Repository documentation and setup instructions
MCP Suite
A monorepo for MCP servers and applications with shared packages.
Structure
mcp-suite/
├── packages/
│ ├── mcp-core/ # Shared: errors, logging, schemas, middleware
│ ├── mcp-auth/ # OAuth discovery, token validation, sessions
│ └── mcp-ui/ # Helpers for ui:// resources
├── servers/
│ ├── mcp-example-1/ # Example MCP server with tools
│ └── mcp-example-2/ # Example MCP server with resources
├── apps/
│ ├── ui-app-1/ # Front-end bundle
│ └── ui-app-2/ # Front-end bundle with auth
└── infra/
├── docker/ # Docker configurations
└── terraform/ # Infrastructure as code
Getting Started
# Install dependencies
pnpm install
# Build all packages
pnpm build
# Run development mode
pnpm dev
Adding a New Server
- Create
servers/mcp-<name>/ - Add
package.jsonwith workspace dependencies - Implement server in
src/index.ts
Quick Setup
Installation guide for this server
Install Package (if required)
npx @modelcontextprotocol/server-mcp-suite
Cursor configuration (mcp.json)
{
"mcpServers": {
"kyubinokitsune-ace-mcp-suite": {
"command": "npx",
"args": [
"kyubinokitsune-ace-mcp-suite"
]
}
}
}