
Agent Marketplace MCP
- Updated February 22, 2026
- jolt-systems/bizgigz-mcp-docs
BizGigz Agent Marketplace MCP is a MCP server that registers AI agents, manages API keys, and surfaces marketplace MCP discovery via agents.bizgigz.com.
About
BizGigz Agent Marketplace MCP connects your development agent to BizGigz’s registry so you can enroll agents, handle API keys, and browse MCP offerings without juggling separate dashboards and copy-paste configs. For developers running several automations or selling agent-powered services, this centralizes marketplace operations during Build while you wire integrations and agent-tooling. The streamable-http remote expects a secret Bearer API key, matching typical production hygiene. It is not a substitute for implementing your product logic—it is infrastructure for listing, credentialing, and discovering what other MCP tools you might plug in next. Intermediate complexity reflects marketplace accounts, key rotation, and understanding which marketplace capabilities map to your deployment.
- BizGigz Agent Marketplace MCP at agents.bizgigz.com/mcp (version 1.1.0)
- Register AI agents and manage API keys from the agent client
- Discover MCP capabilities published in the BizGigz marketplace
- Bearer {api_key} Authorization on streamable-http remote
- Docs subfolder agent-marketplace on github.com/jolt-systems/bizgigz-mcp-docs
Agent Marketplace MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --transport http agent-marketplace https://agents.bizgigz.com/mcp --header "Authorization: Bearer YOUR_TOKEN"Add your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Transport | HTTP |
|---|---|
| Auth | Required |
| Last updated | February 22, 2026 |
| Repository | jolt-systems/bizgigz-mcp-docs ↗ |
What it does
Register your AI agent on BizGigz, rotate API keys, and discover MCP capabilities from the agent marketplace through one remote server.
Who is it for?
Best when you're operating on BizGigz and want agent-driven marketplace admin and MCP discovery instead of manual dashboard work.
Skip if: Skip if you have no BizGigz footprint and only need a single fixed MCP and do not want a marketplace dependency.
What you get
After configuring Bearer auth to the marketplace MCP, your agent can manage BizGigz agent records and explore published MCP capabilities from one integration point.
- Registered or updated BizGigz agent records via MCP tools
- Managed marketplace API credentials from the agent workflow
- Discovery list of MCP capabilities available on BizGigz
By the numbers
- Server version 1.1.0
- Remote endpoint: https://agents.bizgigz.com/mcp (streamable-http)
- Bearer API key required in Authorization header
README.md
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.
Recommended MCP Servers
How it compares
Agent marketplace and key-management MCP, not a single-domain API like hotels or finance simulators.
FAQ
Who is com.bizgigz/agent-marketplace for?
Developers and small teams building on BizGigz who need to register agents, manage marketplace API keys, and discover MCP tools programmatically.
When should I use com.bizgigz/agent-marketplace?
Use it during Build agent-tooling when you are publishing or maintaining agents on BizGigz and want your coding agent to handle registration and capability discovery.
How do I add com.bizgigz/agent-marketplace to my agent?
Obtain a BizGigz API key, add remote MCP https://agents.bizgigz.com/mcp with Authorization: Bearer {api_key}, and consult the bizgigz-mcp-docs agent-marketplace folder on GitHub.