pypi aimarket-mcpstreamable-httpMITupdated 7d ago
π Read-only mirror. aimarket-mcp is published from the canonical AI-Factory monorepo. Pull requests are not accepted β any commit pushed here is overwritten by scripts/mirrorsatellites.sh on the next sync. π Found a bug or have a request? Please open an issue.
What can you do with AIMarket MCP Gateway?
π Read-only mirror.
aimarket-mcpis published from the canonical AI-Factory monorepo. Pull requests are not accepted β any commit pushed here is overwritten byscripts/mirror_satellites.shon the next sync. π Found a bug or have a request? Please open an issue.
aimarket-mcp β ecosystem MCP gateway
π English Β· Π ΡΡΡΠΊΠΈΠΉ Β· EspaΓ±ol Β· FranΓ§ais Β· δΈζ Β· Glossary
π’ Just want to try the marketplace? Install nothing.
Paste
https://modelmarket.dev/mcpinto your MCP client and you havemarket_search
market_invokeagainst the live hub, with a few free trial invokes per caller and a signed receipt for each β no wallet, no key, no install. βdocs/hosted-mcp-endpoint.mdInstall this package when you want the other three tools (
web_fetch,web_search,metis_verify), or want to point the market tools at a hub of your own.
One MCP gateway. Five hardened tools. Shared by Metis, ARGUS, and the ecosystem.
Transport: stdio (aimarket_mcp/stdio_server.py) for Glama / Claude Desktop / Cursor, built with the
official Model Context Protocol Python SDK (mcp, FastMCP).
Also ships Streamable-HTTP on :9090 for self-hosted deployments (aimarket-mcp-http, Docker Compose).
| Item | Location |
|---|---|
| MCP entrypoint (stdio) | aimarket_mcp/stdio_server.py |
| MCP gateway (HTTP) | aimarket_mcp/server.py |
| Tool handlers + security | aimarket_mcp/tools.py, aimarket_mcp/security.py |
| Glama / Docker (stdio) | Dockerfile, glama.json |
| Self-host HTTP | Dockerfile.http, docker-compose.yml |
Compatible hosts: Claude Desktop, Cursor, Glama, and any MCP client that supports stdio or Streamable-HTTP.
Tools
| Tool | What it does | Hardening |
|---|---|---|
web_fetch |
Fetch a URL, return main text (readability-lite) | SSRF-guarded; output sanitized + <untrusted>-wrapped |
web_search |
Live DuckDuckGo search β top snippets | output sanitized + <untrusted> |
metis_verify |
Metis cognition + verification envelope | returns answer + verify_score / verified gate |
market_search |
Discover priced capabilities on an AIMarket hub | free; no wallet, key or channel; the hub lists only what it can execute |
market_invoke |
Run one on the hub's free trial tier | returns the signed receipt nonce; reports the hub's 402 verbatim when the allowance is spent |
Example β buy a GAIA Open-Meteo reading
market_search_tool(intent="gaia weather open-meteo")
market_invoke_tool(
capability_id="gaia.weather.read@v1",
product_id="gaia.gateway",
source_hub="https://iot.modelmarket.dev",
# input JSON with device_id om-wx-01 β see tool schema / hub docs
)
Or the same HTTP the tool wraps:
curl -s -X POST "${AIMARKET_HUB_URL:-https://modelmarket.dev}/ai-market/v2/invoke" \
-H 'Content-Type: application/json' \
-H 'X-AIMarket-Sandbox-Visitor: vis_mcp_om_wx' \
-d '{"capability_id":"gaia.weather.read@v1","product_id":"gaia.gateway",
"source_hub":"https://iot.modelmarket.dev","input":{"device_id":"om-wx-01"}}'
That is the easy path (trial/sandbox). Proving an external wallet paid on-chain
is a separate escrow flow (openChannel β DebitAuthorization β hub debit/settle) β
see docs/onchain-journal.md Β§3lβΒ§3m and
gaia/docs/LIVE-RELAYS.md.
Why a gateway (not per-agent tools): generic capabilities are written once; the security core lives in one audited place. Ecosystem-specific capabilities live in their own MCP servers (aimarket-oracle-gateway, aimarket-plugins).
Configure (env)
| var | meaning |
|---|---|
AIMARKET_METIS_URL |
Metis verify API base (default https://metis.modelmarket.dev) |
AIMARKET_METIS_KEY |
optional bearer for Metis verify |
AIMARKET_SEARCH_URL |
DuckDuckGo HTML endpoint override |
AIMARKET_HUB_URL |
AIMarket hub for market_search / market_invoke (default https://modelmarket.dev) |
AIMARKET_SANDBOX_VISITOR |
Trial identity for market_invoke; random per install, set it to keep an allowance across reinstalls |
AIMARKET_MCP_KEY |
HTTP only β bearer auth key |
AIMARKET_MCP_PRODUCTION |
HTTP only β 1 requires AIMARKET_MCP_KEY (fail-closed) |
AIMARKET_MCP_RATE |
HTTP only β requests/min per key/IP (default 120) |
AIMARKET_MCP_PORT |
HTTP only β listen port (default 9090) |
Run (stdio β Glama / Claude Desktop)
Claude Desktop (mcpServers entry) β no clone, no working directory to get wrong:
{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": ["aimarket-mcp"]
}
}
}
uvx fetches the published package and runs its aimarket-mcp console script, which is
the stdio server. With the package already installed, "command": "aimarket-mcp" and no
args does the same thing.
From a checkout, for development:
pip install -e .
python -m aimarket_mcp.stdio_server
Run (HTTP β self-host)
pip install -e .
AIMARKET_MCP_KEY=sk-... AIMARKET_MCP_PRODUCTION=1 aimarket-mcp-http # :9090
# or: docker compose up -d (uses Dockerfile.http)
Cursor / Claude (Streamable HTTP)
{
"mcpServers": {
"aimarket-web": {
"type": "streamable-http",
"url": "http://127.0.0.1:9090/mcp",
"headers": {
"Authorization": "Bearer YOUR_AIMARKET_MCP_KEY"
}
}
}
}
Publish on Glama
Listing: glama.ai/mcp/servers/alexar76/aimarket-mcp
Same pattern as aimarket-oracle-gateway (working on Glama): repo-root glama.json + Dockerfile + python -m aimarket_mcp.stdio_server.
| Field | Value |
|---|---|
| Dockerfile | Dockerfile (from repo β not Glama debian/uv template) |
| Command | python -m aimarket_mcp.stdio_server |
| Placeholder parameters | {} |
| Pinned SHA | empty (latest) |
Do not use the auto-generated debian:trixie-slim + uv sync + mcp-proxy -- aimarket-mcp template β that was the broken HTTP/ENOENT path.
Consumers
- Metis β enable the preset:
enable_mcp_tools: true mcp_ecosystem_presets: [aimarket-web] - ARGUS β add the server to
argus.config.jsonmcpServers(see that repo).
Test
pip install -e '.[dev]' && pytest -q
Glama
Glama ignores repo Dockerfiles β set Build steps in admin/dockerfile:
["bash scripts/glama_install.sh"]
CMD: [".venv/bin/python", "-m", "aimarket_mcp.stdio_server"]. Pin main or tag glama-build (not a
fixed SHA). Details: docs/GLAMA.md.
Registries
| Registry | Listing |
|---|---|
| Glama | glama.ai/mcp/servers/alexar76/aimarket-mcp |
| Official MCP Registry | io.github.alexar76/aimarket-mcp β server.json + GitHub Actions |
| PyPI | pip install aimarket-mcp |
| GitHub Releases | github.com/alexar76/aimarket-mcp/releases |
Install
Add AIMarket MCP Gateway to your client. Pick the one you use.
{
"servers": {
"aimarket-mcp": {
"type": "http",
"url": "https://{aimarket_host}/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add aimarket-mcp -- uvx aimarket-mcpcodex mcp add aimarket-mcp -- uvx aimarket-mcpamp mcp add aimarket-mcp -- uvx aimarket-mcp{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"aimarket-mcp": {
"command": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"aimarket-mcp": {
"type": "local",
"command": "uvx",
"args": [
"aimarket-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"aimarket-mcp": {
"command": {
"path": "uvx",
"args": [
"aimarket-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx aimarket-mcpRun `goose configure`, choose **Add Extension β Command-line Extension**, and paste this command.
5 tools
AIMarket MCP Gateway exposes 5 tools to a connected agent.
- web_fetch
- Fetch a URL, return main text (readability-lite)
- web_search
- Live DuckDuckGo search β top snippets
- metis_verify
- Metis cognition + verification envelope
- market_search
- Discover priced capabilities on an AIMarket hub
- market_invoke
- Run one on the hub's free trial tier
Score
84 / 100
Excellent
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability6/15
- Install experience15/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 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 0.3.0Latest | Aug 16, 2026 |
| 0.2.3 | Jul 28, 2026 |
| 0.2.1 | Jul 28, 2026 |
| 0.2.0 | Jul 28, 2026 |
| 0.1.0 | Jul 12, 2026 |