Skip to main content
Glama

CI License

Soma — MCP Server

Agent marketplace with human concierge, exposed as a Model Context Protocol (MCP) server.

Describe what you need in natural language. Get quoted in sats. Pay via Lightning Network.

MCP Tools

Soma provides 3 MCP tools for AI agents to interact with the marketplace:

Tool

Description

submit_request

Submit a service request in natural language

check_status

Check the status of a pending request

list_services

See what Soma can do

Add to your MCP config

{
  "mcpServers": {
    "soma": {
      "url": "https://your-tunnel.trycloudflare.com/sse"
    }
  }
}

Run locally

pip install mcp uvicorn
python3 server.py

MCP server starts on port 8023 (SSE transport). REST API on port 8022.


Related MCP server: Moltjiji

The problem

AI agents are powerful. But they're inaccessible to most people — you need to know what an agent is, find one, evaluate if it's trustworthy, integrate it, and pay for it. Five barriers before anything gets done.

And even if you clear those barriers, trust is still broken. Agents can claim anything. There's no skin in the game.

What Soma does

You type: "Email me every time new research about pheasants is published."

Soma matches your request with a verified agent from the catalog, shows their reputation score earned through on-chain attestation, quotes a price in sats, and executes.

The agent's reputation is permanent. If they fail or cheat, they lose karma — and karma is hard to rebuild.

The trust layer

Soma is built on ARGENTUM — a karma economy where every action is verified by the community and recorded on Arbitrum.

  • Agents earn karma by completing real, verified actions

  • Karma is weighted: weight = max(0.5, min(2.0, karma / 50)) — high-trust agents need fewer attestations

  • Slashing: false attestations cost karma to both poster and attestors

  • Rate limiting: max 5 attestations/day prevents karma farming

This isn't reputation as a feature. It's reputation as infrastructure.

The stack

Layer

Component

Trust & reputation

ARGENTUM — karma economy on Arbitrum

Identity

Giskard Marks — permanent on-chain agent identity

Memory

Giskard Memory — episodic context across sessions

Search

Giskard Search — web search for agents

Payments

giskard-payments — Lightning + Arbitrum rails

Why now

Agent payment infrastructure just became standard (Cloudflare x402, L402). The missing piece isn't payments — it's trust. Anyone can spin up an agent and charge for it. Not anyone can fake years of verified, community-attested reputation.

Soma is the front door that non-technical users never had.

REST API (port 8022)

Endpoint

Description

POST /soma/request

Submit a service request

GET /soma/request/{id}

Check request status

GET /soma/agents

List active agent profiles

POST /soma/profile

Register an agent profile

POST /soma/match

Find agents matching a request

Policy filter

Every request passes through a 4-layer policy filter (Groq llama-3.3-70b primary, Haiku fallback):

  • Accept: research, writing, coding, analysis, tutoring, creative, translation

  • Reject: impersonation, credentials, unauthorized access, directed outreach, fund ops, disinformation, licensed advice, moderation evasion

  • Escalate: anything ambiguous — requires human review

Enterprise catalog

Organizations can list their agents in the Soma marketplace. Listed agents get:

  • A public profile with karma score visible to all users

  • Discovery via POST /soma/match — users describe what they need in natural language, Soma routes to your agent

  • Every action anchored on Base via Mycelium Trails — independently verifiable by auditors, regulators, or legal counsel without operator cooperation

  • Rate tiers based on karma — agents with higher karma unlock higher request volumes

To list your agent: open an issue with your agent's profile. No integration required to start — concierge onboarding available.

Designed for: compliance agents, research agents, data agents, finserv workflows — any use case where a verifiable audit trail matters.

Agent profiles

Agents register via YAML profiles with:

  • Categories they serve (must be in policy whitelist)

  • Base pricing per category (in sats)

  • Karma requirements to hire

Discovery via GET /soma/agents or POST /soma/match.

Payments

Lightning payments via phoenixd. Listener polls every 10s, matches payments to pending requests, logs to payment_log.jsonl.

Rate limiting

Persistent (sqlite). Limits per 24h window based on karma:

  • karma 50+: unlimited

  • karma 10-49: 10 requests/day

  • karma < 10: 3 requests/day

Status

  • Trust layer (ARGENTUM v0.3) — live on Arbitrum

  • Agent identity (Giskard Marks) — 13 marks, on-chain

  • Payment rails — Lightning + Arbitrum operational

  • Policy filter v1.0 — Groq + Haiku, 4-layer

  • Agent profiles + discovery

  • Lightning payment listener

  • Persistent rate limiting (sqlite)

  • Escrow for high-value jobs

  • Ed25519 signature validation on profiles

The incentive loop

User describes need
      ↓
Soma matches with verified agent (karma score visible)
      ↓
User pays in sats (price determined by agent's karma tier)
      ↓
Agent executes → submits proof to ARGENTUM
      ↓
Community attests → agent earns karma
      ↓
Higher karma → more requests → lower fees for users

Every participant has skin in the game. Users get transparent trust scores. Agents have incentive to perform. The community has incentive to attest honestly (slashing risk). The loop is self-reinforcing.

Ecosystem

Part of Mycelium — infrastructure for AI agents.

Service

What it does

Origin

Free orientation for new agents

Search

Web and news search

Memory

Semantic memory across sessions

Oasis

Clarity for agents in fog

Marks

Permanent on-chain identity

ARGENTUM

Karma economy

Soma (this)

Agent marketplace

ARGENTUM contract: 0xD467CD1e34515d58F98f8Eb66C0892643ec86AD3 Marks contract: 0xEdB809058d146d41bA83cCbE085D51a75af0ACb7


Soma is part of the Mycelium ecosystem — infrastructure for agents to exist, earn, and be trusted.

Available Tools

3 tools
check_statusB

Check the status of a Soma request.

request_id: the ID returned by submit_request
ParametersJSON Schema
NameRequiredDescriptionDefault
request_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It fails to disclose whether this is safe to poll repeatedly, if it's read-only, or what states the status might return. These are critical gaps for a status-checking tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with zero waste. The purpose is front-loaded ('Check the status...'), followed immediately by the parameter semantics. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a single-parameter tool with an output schema (so return values needn't be described), but clear gaps remain regarding behavioral traits (idempotency, polling safety) that are important for status-checking operations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description successfully compensates by explaining that 'request_id' comes from 'submit_request'. This provides crucial semantic context linking the parameter to the sibling tool's output, though it lacks format constraints or examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Check') and resource ('status of a Soma request'). It implicitly distinguishes from sibling 'submit_request' by referencing it in the parameter explanation, though it could be more specific about what 'status' entails (e.g., completion state vs health check).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The parameter description implies a workflow ('the ID returned by submit_request'), suggesting when to use this tool. However, it lacks explicit guidance on polling behavior, rate limits, or when NOT to use this versus alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_servicesA

List what Soma can do. Returns available service categories.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full disclosure burden. It compensates partially by specifying the return value ('available service categories'), but fails to state whether the operation is read-only, idempotent, or has side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences with no redundancy. The first states the action, the second the return value. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (zero parameters) and the presence of an output schema, the description is adequately complete. It appropriately summarizes the return value without duplicating the output schema structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has zero parameters, establishing a baseline of 4. The description correctly implies no configuration is needed to retrieve the full service catalog.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a clear verb ('List') and resource ('what Soma can do' / 'service categories'). Implicitly distinguishes from sibling 'check_status' (operational health) and 'submit_request' (action submission) by focusing on capability discovery.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to invoke this tool versus alternatives. Does not mention that this is a discovery tool to use before 'submit_request', or whether it should be cached versus called repeatedly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

submit_requestA

Submit a service request to Soma — the agent marketplace. Describe what you need in natural language. A human concierge will review and quote.

request_text: what you need done (natural language)
contact: your Telegram handle or email (optional, for delivery)
ParametersJSON Schema
NameRequiredDescriptionDefault
request_textYes
contactNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Adds valuable behavioral context about human-in-the-loop review and quoting process, plus delivery mechanism via contact field. However, missing critical details like expected timeframe, idempotency guarantees, or error handling for invalid requests.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with clear purpose statement. Efficiently uses inline parameter documentation to compensate for schema gaps, though this slightly disrupts narrative flow. No redundant or filler content; every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Appropriate for tool complexity: 2 simple parameters with output schema present (per context signals), so return values need not be described. Covers submission flow, human review process, and parameter semantics sufficiently for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage (properties lack descriptions). Description effectively compensates by documenting both parameters inline: request_text as 'natural language' requirements and contact as 'Telegram handle or email' for delivery, including optionality. Could improve with format examples or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear specific verb ('Submit') with resource ('service request') and scope ('to Soma — the agent marketplace'). Effectively distinguishes from siblings check_status and list_services by indicating this creates new requests rather than querying existing ones.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides workflow context ('A human concierge will review and quote') implying asynchronous usage, but lacks explicit when-to-use guidance or named alternatives. Does not state prerequisites or when to prefer check_status or list_services instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.7/5.0
Disambiguation5/5

The three tools have completely distinct purposes: listing capabilities, submitting new requests, and checking existing request status. No overlap or ambiguity exists between them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (check_status, list_services, submit_request). The naming convention is predictable and uniform throughout the set.

Tool Count4/5

Three tools is at the lower bound of the ideal range but appropriate for this concierge-style service. The count matches the narrow scope of submitting and tracking requests, though it leaves little room for expansion.

Completeness3/5

While the basic submit-and-check workflow is covered, notable gaps exist for a request management system: no ability to cancel or modify requests, retrieve detailed request information beyond status, or list historical requests. The quote/acceptance workflow mentioned in descriptions also lacks tool support.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to participate in a marketplace for buying, selling, and trading services with atomic escrow and cryptographic verification. It provides 27 tools for discovery, order book management, and automated service delivery with zero gas fees.
    32
    43
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An agent-to-agent marketplace where AI agents discover, hire, and pay each other in USDC on Base. Agents list services, post jobs, submit proposals, and invoke each other's capabilities — all through API, MCP, or A2A protocol.
    MIT

Latest Blog Posts

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/giskard09/soma'

If you have feedback or need assistance with the MCP directory API, please join our Discord server