npm @acta-team/docs-mcpstdioMITupdated 17d ago
The documentation site for ACTA: verifiable credentials and decentralized identity on Stellar. It is the single reference for everything an issuer, holder, verifier, or integrator needs to build on ACTA, from the REST API and the SDK to the Soroban contracts and the dApp.
What can you do with docs mcp?
ACTA Docs
The documentation site for ACTA: verifiable credentials and decentralized identity on Stellar. It is the single reference for everything an issuer, holder, verifier, or integrator needs to build on ACTA, from the REST API and the SDK to the Soroban contracts and the dApp.
- Live: https://docs.acta.build
- dApp: https://dapp.acta.build
- DID resolver: https://did.acta.build
- API:
https://api.{testnet,mainnet}.acta.build
About ACTA
ACTA issues W3C-style verifiable credentials anchored on Stellar and Soroban:
did:stellaridentities resolved from an on-chain registry, decoupled from any single wallet (key rotation, portability).- Single-tenant credential vaults, one Soroban contract per owner, deployed
by a
vc-vault-factory. Status and revocation are publicly verifiable on Stellar; issuance fees settle on-chain in USDC. - A prepare/submit flow so the user's Stellar wallet signs every transaction; the services never hold keys.
What this site documents
Bilingual (English / Spanish) content for:
- Welcome: introduction, architecture, getting started.
- API Reference: vault, credential, contract-info, sponsored-vault, and health endpoints (prepare/submit XDR).
- SDK (
@acta-team/credentials):useVault,useCredential,useVaultRead, sponsored vault. - Contracts:
vc-vault-factory, single-tenantvc-vault,did-stellar-registry, and contract errors. - dApp: features and usage of the web app.
- MCP: the docs MCP server for AI assistants.
Tech stack
- Next.js (App Router), React, TypeScript, Tailwind CSS.
- Content is authored as typed
DocPagemodules (not Markdown files), which keeps it type-checked and lets the build generate a machine-readable index. @acta-team/docs-mcp(inpackages/docs-mcp): an MCP server that exposes the docs to AI assistants, built from a generateddocs-data.json.
Quick start
npm install
npm run dev
The site runs at http://localhost:3000/.
Scripts
| Script | What it does |
|---|---|
npm run dev |
Start the dev server |
npm run build |
Generate the docs index and build the site |
npm run start |
Run the production server |
npm run lint |
Run ESLint |
npm run format |
Format with Prettier |
npm run mcp:generate-docs |
Regenerate the MCP docs-data.json from content |
Content structure
src/content/docs/modules/<module>/<lang>/<page>.ts- oneDocPageper page (slug,title,section,tocItems,content).<lang>isenores.src/content/docs/navigation/{en,es}.ts- sidebar navigation per language.src/content/docs/locales/- UI strings.packages/docs-mcp/- the MCP server and the generateddocs-data.json.
After editing content, run npm run mcp:generate-docs so the search index and
MCP data stay in sync.
License
Dual-licensed, split by what the thing is:
| What | License |
|---|---|
Software — the Next.js app, @acta-team/docs-mcp, scripts, config |
MIT |
| Documentation content — the prose, guides and reference pages | CC BY 4.0 |
ACTA name, logo and brand assets under public/ |
Neither. Trademarks of ACTA, all rights reserved. |
Install
Add docs mcp to your client. Pick the one you use.
claude mcp add docs-mcp -- npx -y @acta-team/docs-mcpcodex mcp add docs-mcp -- npx -y @acta-team/docs-mcpamp mcp add docs-mcp -- npx -y @acta-team/docs-mcp{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"docs-mcp","command":"npx","args":["-y","@acta-team/docs-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"docs-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"docs-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @acta-team/docs-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/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 10 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
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Jul 30, 2026 |