Skip to main content
Glama
latesh-munde

Devcon MCP Workshop 2026

by latesh-munde

šŸš€ MCP Server with Autodesk Platform Services (APS)

Node.js MCP License Status


šŸ“Œ Overview

This project implements a Model Context Protocol (MCP) server with support for:

  • Tool exposure for LLM clients (e.g., VS Code Copilot)

  • External API integration

  • Autodesk Platform Services (APS) connectivity

  • Authentication flows (2-legged & 3-legged OAuth)

  • Custom client + agent architecture

It represents a production-oriented agentic AI backend system.


Related MCP server: ACC.MCP

🧠 Architecture

šŸ”· High-Level Flow


+------------------------+
| LLM Client (VSCode)    |
| Copilot / Chat UI      |
+-----------+------------+
            |
            v
+------------------------+
| MCP Server             |
| (server.js / aps)      |
+-----------+------------+
            |
------------------------------------------------
      |                |                |
      v                v                v
+-------------+ +-------------+ +----------------+
| External    | |   APS APIs  | |  Custom Logic  |
| APIs        | | (OAuth)     | |   / Tools      |
+-------------+ +-------------+ +----------------+

šŸ”· Agent Flow

User Prompt
↓
LLM decides tool
↓
MCP Server executes tool
↓
External API / APS call
↓
Structured response → LLM → User

šŸ“ Project Structure

ā”œā”€ā”€ .vscode/
│ └── mcp.json # MCP configuration for VS Code client
│
ā”œā”€ā”€ node_modules/ # Installed dependencies
│
ā”œā”€ā”€ .env # Environment variables (API keys, secrets)
ā”œā”€ā”€ .gitignore # Git ignored files
│
ā”œā”€ā”€ agent.js # Agent logic (tool orchestration)
ā”œā”€ā”€ aps-server.js # APS integration server (OAuth + APIs)
ā”œā”€ā”€ client.js # Custom MCP client implementation
ā”œā”€ā”€ server.js # Core MCP server (tool definitions)
│
ā”œā”€ā”€ package.json # Project metadata & dependencies
ā”œā”€ā”€ package-lock.json # Dependency lock file

āš™ļø Tech Stack

  • Node.js (ES Modules)

  • Model Context Protocol (MCP SDK)

  • Zod (schema validation)

  • HTTP Streaming Transport

  • Autodesk Platform Services (APS)


šŸ”‘ Key Components

1. server.js

  • Core MCP server

  • Registers tools

  • Handles client requests


2. aps-server.js

  • Integrates Autodesk APIs

  • Handles OAuth (2L + 3L)

  • Secure API communication


3. agent.js

  • Implements agentic behavior

  • Decides which tools to call

  • Enables multi-step workflows


4. client.js

  • Custom MCP client

  • Can simulate or replace VS Code client


5. .vscode/mcp.json

  • Connects VS Code → MCP server


šŸš€ Getting Started

1ļøāƒ£ Install Dependencies

npm install

2ļøāƒ£ Setup Environment

Create .env file:

PORT=3000

# APS Credentials
APS_CLIENT_ID=your_client_id
APS_CLIENT_SECRET=your_client_secret

# External APIs
GEMINI_API_KEY=your_key

3ļøāƒ£ Run Server

node server.js

Expected output:

MCP server running at http://localhost:3000/mcp

4ļøāƒ£ Configure VS Code

Create:

.vscode/mcp.json

{
  "servers": {
    "devcon-workshop": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    },
    "devcon-aps": {
      "type": "http",
      "url": "http://localhost:3001/mcp"
    }
  }
}

5ļøāƒ£ Test Tools

In Copilot Chat:

#add 10 and 20
#greet John in spanish
What's the weather in London?

🧩 Tool Design Pattern

server.registerTool(
"tool_name",
{
description: "Tool description",
inputSchema: {
param: z.string()
}
},
async ({ param }) => ({
content: [{ type: "text", text: "Result" }]
})
);

šŸ” Authentication

āœ… 2-Legged OAuth

Server-to-server

No user interaction

āœ… 3-Legged OAuth

User consent required

Fine-grained permissions

Recommended for production


šŸ—ļø Production Considerations

šŸ”¹ Scalability

Stateless architecture

Horizontal scaling possible

šŸ”¹ Security

Use .env for secrets

Prefer 3LO for user data

šŸ”¹ Reliability

Input validation (Zod)

Structured responses

šŸ”¹ Observability Add logging for tool execution

Monitor API failures


šŸŽÆ Features

āœ” MCP-compliant server

āœ” External API integration

āœ” APS connectivity

āœ” Agent-based execution

āœ” Custom client support


šŸ”® Future Enhancements

Dockerize the application

Deploy on Azure / AWS

Add database-backed tools

Implement caching layer

šŸ“œ License

MIT License


šŸ™Œ Acknowledgements

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    A generic MCP server that dynamically converts OpenAPI-defined REST APIs into tools for LLMs like Claude. It supports multiple authentication methods and transport protocols, enabling seamless interaction with any OpenAPI-compliant API.
    Last updated
    28
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    An MCP server that exposes Autodesk Platform Services (APS) as tools for AI assistants to interact with the APS Data Management API. It enables users to authenticate and manage hubs, projects, and folders through a standardized interface.
    Last updated
    27
    2
  • A
    license
    -
    quality
    A
    maintenance
    MCP server for Autodesk Revit (BIM) with 705+ API endpoints. Enables AI agents to create walls, place doors/windows, generate sheets, manage views, and produce construction documents via the Model Context Protocol. Uses named pipes for zero-crash Revit integration.
    Last updated
    22
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2

  • MCP Hub: AI service discovery, per-user OAuth, and multi-service workflow orchestration

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

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/latesh-munde/devcon-mcp-workshop-2026'

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