An MCP server that connects LLMs to the Binspire API, providing standardized tools and contextual data for building autonomous, AI-driven waste management agents.
We are committed to fostering a safe and inclusive open-source community.
Please review and follow our Code of Conduct when contributing or participating in this project.
- Node.js >= 20.19 or nvm
- Claude Desktop (with MCP support)
- Bun latest runtime
Install Bun by following the official instructions: Bun Installation Guide
Or use the one-line installer:
$ curl -fsSL https://bun.com/install | bashTo check that Bun was installed successfully, open a new terminal window and run:
$ bun -versiongit clone https://github.com/binspireai/mcp.git
cd mcp$ bun installCopy the example file to .env:
$ cp env.example .envRun the development servers with STDIO.
$ bun run dev:stdioRun the development servers with HTTP.
$ bun run dev:httpRun the production servers with STDIO.
$ bun run start:stdioRun the production servers with HTTP.
$ bun run start:http$ bun run buildUsing STDIO transport:
{
"mcpServers": {
"binspire": {
"command": "node",
"args": ["/path/to/binspire-mcp/dist/index.js"],
"env": {
"TRANSPORT": "stdio",
"DATABASE_URL": "your_database_url_here"
}
}
}
}Using HTTP transport:
{
"mcpServers": {
"binspire": {
"url": "http://localhost:3000",
"env": {
"DATABASE_URL": "your_database_url_here"
}
}
}
}We are committed to fostering a welcoming, respectful community. Please read and follow our Code of Conduct when participating in this project.
If you believe you have found a security vulnerability in Binspire MCP, please do not open a public issue on this repository. Opening a public issue could expose sensitive information before it's addressed. Please read our Security Policy for details on how to report a vulnerability.
Binspire MCP is licensed under GPL-3.0.