An open API service indexing awesome lists of open source software.

https://github.com/BitteProtocol/mcp


https://github.com/BitteProtocol/mcp

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

# MCP Proxy Monorepo

This monorepo contains MCP (Model Control Protocol) servers for different services.

## Server URI
`https://mcp.bitte.ai/sse`

## Add to Curser Settings
```
{
"mcpServers": {
"bitte-ai": {
"url": "https://mcp.bitte.ai/sse"
}
}
}
```

## Packages

- **bitte-ai**: MCP server for Bitte AI integrations

## Setup

To install dependencies:

```bash
bun install
```

## Development

This project uses Turborepo for managing the monorepo workflow and Biome for code quality tools.

### Build all packages

```bash
bun run build
```

### Start both services

```bash
bun run start
```

### Development mode

```bash
bun run dev
```

### Lint your code

```bash
bun run lint
# To fix automatically:
bun run lint:fix
```

### Format your code

```bash
bun run format
# To fix automatically:
bun run format:fix
```

### Run individual services

```bash
# Run bitte-ai service
bun run dev:bitte-ai
```

## Adding a new package

1. Create a new directory in the `packages` folder
2. Add the necessary package.json, tsconfig.json, and implementation files
3. Update the root package.json and tsconfig.json to include your new package

This project uses [Bun](https://bun.sh) as the JavaScript runtime.

For more information: [Vibestreaming Logs](https://github.com/microchipgnu/vibestream)