B2Bizzio MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@B2Bizzio MCP Serverget info about B2Bizzio services"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
B2Bizzio MCP Server
A TypeScript implementation of a Model Context Protocol (MCP) server for B2Bizzio business intelligence services.
Overview
This MCP server provides a foundation for integrating B2Bizzio services with AI applications that support the Model Context Protocol. It includes sample tools, resources, and prompts that can be extended with real business intelligence functionality.
Related MCP server: Python MCP Server Template
Features
Tools
get_info: Get information about B2Bizzio services
echo: Echo a message back to the user
Resources
welcome: Welcome message and server information
Prompts
business_analysis: Generate comprehensive business analysis prompts
Prerequisites
Node.js 18.0.0 or higher
npm or yarn package manager
Installation
Clone or download this project
Install dependencies:
npm installBuild the TypeScript project:
npm run build
Running the Server
As a Standalone Server
npm startWith MCP Clients
Claude Desktop
Add the server to your Claude Desktop configuration:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"b2bizzio-mcp-server": {
"command": "node",
"args": ["path/to/b2bizzio-mcp/build/index.js"]
}
}
}VS Code with MCP Extension
The project includes a .vscode/mcp.json configuration file for development and testing.
Development
Project Structure
b2bizzio-mcp/
├── src/
│ └── index.ts # Main server implementation
├── build/ # Compiled JavaScript output
├── .vscode/
│ └── mcp.json # MCP configuration for VS Code
├── package.json
├── tsconfig.json
└── README.mdAvailable Scripts
npm run build- Compile TypeScript to JavaScriptnpm start- Run the compiled servernpm run dev- Build and run in one command
Extending the Server
Adding New Tools
server.registerTool(
"your_tool_name",
{
description: "Description of your tool",
inputSchema: {
param1: z.string().describe("Parameter description"),
param2: z.number().optional().describe("Optional parameter")
}
},
async ({ param1, param2 }) => {
// Your tool implementation
return {
content: [
{
type: "text",
text: `Result: ${param1}`
}
]
};
}
);Adding New Resources
server.registerResource(
"resource_name",
"your-protocol://resource-uri",
{
description: "Resource description",
mimeType: "text/plain"
},
async () => {
return {
contents: [
{
uri: "your-protocol://resource-uri",
mimeType: "text/plain",
text: "Resource content"
}
]
};
}
);Adding New Prompts
server.prompt(
"prompt_name",
"Prompt description",
{
param1: z.string().describe("Parameter description")
},
async ({ param1 }, extra) => {
return {
description: `Generated prompt for ${param1}`,
messages: [
{
role: "user",
content: {
type: "text",
text: `Your prompt text here with ${param1}`
}
}
]
};
}
);Testing
You can test the server using the MCP Inspector:
npx @modelcontextprotocol/inspector node build/index.jsArchitecture
This server is built on:
@modelcontextprotocol/sdk: Official TypeScript SDK for MCP
zod: Schema validation and type safety
TypeScript: Type-safe development environment
The server uses the stdio transport for communication, making it compatible with most MCP clients.
Security Considerations
The server runs with the permissions of the user account
All tool executions require explicit approval from the MCP client
Input validation is performed using Zod schemas
Error handling prevents information leakage
Contributing
To contribute to this project:
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Build and test locally
Submit a pull request
License
MIT License - see LICENSE file for details.
Links
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA basic MCP server template that provides a foundation for building custom tools, resources, and prompts. Serves as a starting point for developers to create their own MCP server functionality.
- Flicense-qualityDmaintenanceA foundational template for building MCP servers in Python using Streamable HTTP transport. Provides example implementations of tools, resources, and prompts to help developers create custom MCP integrations for AI assistants.
- Alicense-qualityDmaintenanceA template/boilerplate MCP server for building custom tools and integrations that enable seamless connections between AI applications and external data sources.270MIT
- Flicense-qualityCmaintenanceEnterprise-grade MCP server with multi-agent system for business AI transformation across finance, healthcare, retail, and other domains. Provides specialized AI agents for data analysis, API execution, business validation, and report generation with real-time monitoring and observability.
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/howbizarre/b2bizzio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server