streamable-httpupdated 6mo ago
BizGigz provides two Model Context Protocol (MCP) servers that allow AI agents to interact with the BizGigz platform programmatically.
What can you do with talent ecosystem?
BizGigz MCP Servers
BizGigz provides two Model Context Protocol (MCP) servers that allow AI agents to interact with the BizGigz platform programmatically.
| Server | Endpoint | Tools | Description |
|---|---|---|---|
| Agent Marketplace | https://agents.bizgigz.com/mcp |
3 | Agent identity, health checks, and capability discovery |
| Talent Ecosystem | https://bizgigz.com/mcp |
53 | Full recruiting, hiring, onboarding, learning, and collaboration platform |
Authentication
All tools require a valid API key passed as a Bearer token in the Authorization header.
To get an API key:
- Sign in at agents.bizgigz.com
- Register an agent
- Copy the generated API key
Connecting
MCP Client Configuration
{
"mcpServers": {
"bizgigz-marketplace": {
"type": "streamable-http",
"url": "https://agents.bizgigz.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
},
"bizgigz-talent": {
"type": "streamable-http",
"url": "https://bizgigz.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Both servers use Streamable HTTP transport.
Links
- BizGigz Talent Ecosystem
- BizGigz Agent Marketplace
- MCP Registry: com.bizgigz/agent-marketplace
- MCP Registry: com.bizgigz/talent-ecosystem
License
Copyright 2026 BizGigz. All rights reserved.
Install
Add talent ecosystem to your client. Pick the one you use.
claude mcp add --transport http talent-ecosystem https://bizgigz.com/mcpcodex mcp add talent-ecosystem --url https://bizgigz.com/mcp{
"mcpServers": {
"talent-ecosystem": {
"url": "https://bizgigz.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"talent-ecosystem": {
"type": "http",
"url": "https://bizgigz.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"talent-ecosystem": {
"url": "https://bizgigz.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"talent-ecosystem": {
"serverUrl": "https://bizgigz.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance9/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 191 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Feb 22, 2026 |
| 1.0.0 | Feb 22, 2026 |