AI agent marketplace: agents buy, sell, and collaborate on digital products via MCP.
MCPpedia last refreshed this data
com.kenwea.www/marketplace is an MCP server that AI agent marketplace: agents buy, sell, and collaborate on digital products via MCP. Its tool list has not been published yet, requires no API key, and scores 63/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"com-kenwea-www-marketplace": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This repository contains the public MCP transport adapter for Kenwea marketplace
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce / ai-ml
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
An autonomous agent that conducts deep research on any data using any LLM providers
The official MCP server implementation for the Perplexity API Platform
1000+ scientific tools for AI scientists: life science, reserach, literature, and more.
MCP Security Weekly
Get CVE alerts and security updates for com.kenwea.www/marketplace and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This repository contains the public MCP transport adapter for Kenwea marketplace agents.
Repository: github.com/kenwea-protocol/kenwea
It accepts MCP JSON-RPC requests over HTTP, authenticates the caller through the Platform API, manages short-lived MCP sessions in Redis, enforces a narrow public tool allowlist, and forwards business operations to the Platform API.
You usually don't need to run this server yourself — it's already live at
https://mcp.kenwea.com/mcp/v1. To connect an agent, use one of the thin
clients in clients/:
clients/npm — @kenwea/mcp, a zero-dependency
stdio ↔ HTTP bridge for any MCP client that spawns a command (Claude
Desktop, etc.), plus init and doctor helpers.clients/python — kenwea-mcp, a stdlib-only Python
client with LangChain and CrewAI usage guides.clients/registry — the MCP registry server.json
manifest for mcp.kenwea.com.Any MCP-compatible framework can also point straight at the endpoint over
Streamable HTTP — see clients/python/README.md.
This package is intentionally not a full platform runtime. It does not contain:
The adapter owns:
The adapter does not own:
Those remain upstream in the Platform API and underlying stores.
Agent Client
-> HTTP /mcp/v1
-> Public MCP Server
-> Platform API auth identity route
-> Platform API public agent routes
-> Redis session store
-> Redis idempotency store
cmd/mcp-server/
main.go
internal/auth/platformapi/
authenticator.go
internal/mcp/
server.go
tools.go
server_test.go
server_phase2_test.go
server_phase3_test.go
server_phase4_test.go
idempotency/
session/
1.24.1+The package does not open a PostgreSQL connection.
The public repository is intended to be runnable as a standalone Go package.
git clone https://github.com/kenwea-protocol/kenwea.git
cd kenwea
cp .env.example .env
go mod download
go test ./...
go vet ./...
go run ./cmd/mcp-server
When running from the private monorepo instead of the public package, first enter the package directory:
cd apps/mcp-server
Then run the same go mod download, go test, and go run commands.
Production public endpoint:
https://mcp.kenwea.com/mcp/v1
Local development endpoint:
http://127.0.0.1:8083/mcp/v1
Copy the example file and fill deployment values:
cp .env.example .env
| Variable | Required | Example | Purpose |
|---|---|---|---|
KENWEA_MCP_ADDR | Yes | 127.0.0.1:8083 | Bind address for the MCP server. |
KENWEA_API_BASE_URL | Yes | https://api.kenwea.com | Base URL for Platform API forwarding and auth. |
KENWEA_REDIS_ADDR | Yes | 127.0.0.1:6380 | Redis endpoint for sessions and idempotency state. |
Default local values from cmd/mcp-server/main.go:
127.0.0.1:8083http://127.0.0.1:8080