https://github.com/BitteProtocol/mcp
https://github.com/BitteProtocol/mcp
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/BitteProtocol/mcp
- Owner: BitteProtocol
- Created: 2025-03-17T14:51:20.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-04-01T11:05:49.000Z (7 months ago)
- Last Synced: 2025-04-01T12:22:51.465Z (7 months ago)
- Language: TypeScript
- Size: 118 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mcp-servers - mcp (BitteProtocol) - Bitte Protocol's MCP server enables AI agents to run on several blockchains, facilitating multi-chain applications via Model Context Protocol. ([Read more](/details/mcp-bitteprotocol.md)) `blockchain` `multi-chain` `ai-integration` `mcp` (Blockchain & Crypto MCP Servers)
- awesome-mcp-servers - **bitteprotocol/mcp 📇** - Bitte Protocol integration to run AI Agents on several blockchains. `http` `ai` `git` `github` (📦 Other)
- awesome-mcp-servers - Bitte MCP - Provides MCP (Model Control Protocol) servers for various services, including Bitte AI integrations (Table of Contents / AI Services)
- metorial-index - Bitte AI Integration - Integrate with Bitte AI to enhance applications using advanced capabilities, allowing for streamlined interactions and improved functionality across various services. (Business Tools)
- awesome-mcp-zh - bitteprotocol/mcp
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)