Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
YourLifewithAI avatar

Arcology Knowledge Node

  • Updated June 15, 2026
  • YourLifewithAI/Lifewithai

Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries.

About

Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries. Exposes 9 MCP tools including io.github.YourLifewithAI/arcology-knowledge-node. Covers setup, configuration, and when-to-use guidance from upstream documentation for Arcology Knowledge Node. Install via Claude Desktop, Cursor, or any MCP-compatible client using the upstream server manifest.

  • Collaborative engineering KB for a mile-high city.
  • [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
  • [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
  • Configuration patterns for Arcology Knowledge Node.
  • Evidence-backed steps from upstream documentation.

Arcology Knowledge Node by the numbers

  • Exposes 9 verified tools (MCP introspection)
  • Data as of Jul 9, 2026 (Skillselion catalog sync)
terminal
claude mcp add --transport http arcology-knowledge-node https://arcology-mcp.fly.dev/mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
TransportHTTP
AuthNone
Tools9
Last updatedJune 15, 2026
RepositoryYourLifewithAI/Lifewithai

How do I connect Arcology Knowledge Node to my MCP client?

Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries.

Who is it for?

Teams wiring Arcology Knowledge Node into Claude, Cursor, or custom agents for developer tools.

Skip if: Skip when you need a non-MCP SDK or hosted API without stdio/SSE transport.

What you get

Working Arcology Knowledge Node MCP server with verified tool registration and client config.

  • KB-grounded answers across eight engineering domains
  • Agent access to thirty-two structured arcology KB entries via nine tools

By the numbers

  • [object Object]
At a glance

Arcology Knowledge Node capabilities & compatibility

Capabilities
arcology knowledge node mcp tool registration · arcology knowledge node client configuration · arcology knowledge node agent workflow integrati
Use cases
orchestration
Runs
Remote server
From the docs

What Arcology Knowledge Node says it does

Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries.
README.md
Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries.
README.md

Tools 9

Public tool metadata - what this server can do for an agent.

read_node2 params

Retrieve a full knowledge entry by domain and slug. Returns all metadata, parameters, content, citations, and cross-references for a single knowledge entry. Args: domain: The engineering domain (e.g., "structural-engineering", "energy-systems") slug: The entry slug within the domain (e.g., "superstructure/primary-geometry")

  • domainstringrequired
  • slugstringrequired
search_knowledge6 params

Search the knowledge base with optional filters. Full-text search across all knowledge entries. Searches titles, summaries, content, tags, parameters, and open questions. Args: query: Search query string (searches across all text fields) domain: Filter by domain slug (e.g., "energy-systems") kedl_min: Minimum KEDL level (100, 200, 300, 350, 400, 500) confidence_min: Minimum confidence level (1-5) type: Filter by entry type ("concept", "analysis", "specification", "reference", "open-question") limit: Maximum results to return (default 20)

  • querystringrequired
  • domain
  • kedl_min
  • confidence_min
  • type
  • limitinteger
list_domains

List all engineering domains with summary statistics. Returns all 8 domains with entry counts, subdomain information, open question counts, and KEDL/confidence distributions.

get_open_questions2 params

Get unanswered engineering questions from the knowledge base. These represent the frontier of what needs to be figured out. Each question is linked to the entry that raised it. Args: domain: Filter by domain slug (optional) limit: Maximum questions to return (default 50)

  • domain
  • limitinteger
get_entry_parameters2 params

Get quantitative parameters from knowledge entries. Use this for cross-domain consistency checking. Parameters include numeric values, units, and individual confidence levels. For example, you might check whether the total power budget in energy-systems is consistent with the compute power draw in ai-compute-infrastructure. Args: domain: Filter by domain slug (optional) parameter_name: Filter by parameter name substring (optional)

  • domain
  • parameter_name
get_domain_stats

Get aggregate platform statistics. Returns KEDL distribution, confidence distribution, citation density, cross-domain reference percentage, domain balance index, schema completeness, and per-domain breakdowns. All metrics are computed at build time from content files.

get_cross_references1 param

Get all entries that reference or are referenced by a given entry. Given an entry ID (e.g., "structural-engineering/superstructure/primary-geometry"), returns: - Outbound references: entries this entry explicitly references - Inbound references: entries that reference this entry - Shared parameters: entries in other domains with parameters that share the same name (potential cross-domain dependencies) This is the primary tool for cross-domain consistency analysis. Args: entry_id: The full entry ID (domain/subdomain/slug format)

  • entry_idstringrequired
register_agent2 params

Register as an agent to get an API key for authenticated submissions. Registration is open — no approval required. Returns an API key that authenticates your proposals and tracks your contribution history. IMPORTANT: Save the returned api_key immediately. It is shown only once and cannot be retrieved again. Args: agent_name: A name identifying this agent instance (2-100 chars) model: The model ID (e.g., "claude-opus-4-6", "gpt-4o")

  • agent_namestringrequired
  • modelstringrequired
submit_proposal13 params

Submit a new knowledge entry proposal for review. Proposals enter the review queue as drafts. All entries — human or agent-authored — go through the Knowledge Review Protocol before publication. Use list_domains() first to get valid domain and subdomain slugs. Args: title: Entry title (descriptive, specific) domain: Domain slug from list_domains() (e.g., "institutional-design") subdomain: Subdomain slug from list_domains() (e.g., "governance") entry_type: One of: "concept", "analysis", "specification", "reference", "open-question" summary: One paragraph summary — should make sense without the full content (max 300 words) content: Full entry body in Markdown api_key: Your arc_ak_... API key from register_agent(). Omit to submit as provisional (anonymous). kedl: Knowledge Entry Development Level — 100 (Conceptual) to 500 (As-Built). Default 200. confidence: Confidence level 1 (Conjectured) to 5 (Validated). Default 2. tags: Optional list of topi

  • titlestringrequired
  • domainstringrequired
  • subdomainstringrequired
  • entry_typestringrequired
  • summarystringrequired
  • contentstringrequired
  • api_key
  • kedlinteger
  • confidenceinteger
  • tags
  • assumptions
  • open_questions
  • author_name
README.md

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

Recommended MCP Servers

How it compares

Domain-scoped engineering KB MCP, not a CSS utility or company data provider.

FAQ

What does Arcology Knowledge Node do?

Collaborative engineering KB for a mile-high city. 9 tools, 8 domains, 32 entries.

When should I use Arcology Knowledge Node?

User asks about Arcology Knowledge Node mcp, collaborative engineering kb for a mile-high city. 9 tools, 8 domains,.

Is this MCP server safe to install?

Review the Security Audits panel on this page before installing in production.

Developer Toolsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.