Appian MCP Server
Enables interaction with Appian applications through the Model Context Protocol, allowing querying and managing records, executing processes, and querying reports via natural language.
README
Appian MCP Server
A Model Context Protocol (MCP) server for seamless integration with Appian APIs using Node.js.
Overview
This MCP server provides a standardized interface to interact with Appian applications, allowing AI applications to:
- Query and manage records
- Create, update, and delete records
- Execute processes
- Query reports
Features
- Record Management: Get, create, update, and delete Appian records
- Process Execution: Execute Appian processes with input parameters
- Report Querying: Query Appian reports with filters
- TypeScript Support: Built with TypeScript for type safety
- Error Handling: Comprehensive error handling and logging
- Configurable Authentication: Support for API keys and OAuth
Prerequisites
- Node.js 16 or higher
- npm or yarn
- Appian configuration (tenant, credentials)
Installation
- Clone or navigate to the project directory
- Install dependencies:
npm install
- Set up environment variables:
cp .env.example .env
# Edit .env with your Appian credentials
Configuration
Environment Variables
APPIAN_TENANT: Your Appian tenant name (e.g., "mycompany")APPIAN_API_KEY: API key for authentication (recommended)APPIAN_CLIENT_ID: OAuth client ID (alternative authentication)APPIAN_CLIENT_SECRET: OAuth client secret (alternative authentication)APPIAN_BASE_URL: Custom Appian API base URL (optional)
MCP Configuration
The .vscode/mcp.json file configures the MCP server for use with LLM applications:
{
"servers": {
"appian-mcp-server": {
"type": "stdio",
"command": "node",
"args": ["dist/index.js"]
}
}
}
Available Tools
get_records
Retrieve records from an Appian record type.
Parameters:
recordType(string, required): The name of the Appian record typelimit(integer, optional): Maximum number of records to return (default: 100)offset(integer, optional): Number of records to skip for pagination (default: 0)
create_record
Create a new record in an Appian application.
Parameters:
recordType(string, required): The name of the Appian record typedata(object, required): The record data to create
update_record
Update an existing record.
Parameters:
recordType(string, required): The name of the Appian record typerecordId(string, required): The ID of the record to updatedata(object, required): The fields to update
delete_record
Delete a record from an Appian application.
Parameters:
recordType(string, required): The name of the Appian record typerecordId(string, required): The ID of the record to delete
execute_process
Execute an Appian process.
Parameters:
processName(string, required): The name of the Appian processinputs(object, optional): Input parameters for the process
query_report
Query an Appian report.
Parameters:
reportName(string, required): The name of the Appian reportfilters(object, optional): Filters to apply to the report
Building
Build the TypeScript source to JavaScript:
npm run build
Development
For development with automatic compilation:
npm run watch
Then in another terminal, start the server:
npm start
Running the MCP Server
Direct Execution
npm run dev
In VS Code
- Ensure the project is built:
npm run build - Use the MCP inspector tool or connect through an LLM application
- The server will communicate via stdio
API Integration
The server uses axios for HTTP communication with Appian REST APIs. Update the appian-client.ts file to add additional Appian operations as needed.
Error Handling
The server includes comprehensive error handling for:
- Network failures
- Authentication errors
- Invalid record types or IDs
- API validation errors
Errors are returned in the MCP response format with detailed error messages.
Extending the Server
To add new Appian operations:
- Add a new method to
AppianClientinsrc/appian-client.ts - Add a new tool definition in the
ListToolsRequestSchemahandler insrc/index.ts - Add a new case in the
CallToolRequestSchemahandler to call your method - Rebuild:
npm run build
Security Considerations
- Store API keys securely (use environment variables or secret management)
- Never commit
.envfiles to version control - Use HTTPS for all Appian API communication
- Implement proper access controls in your LLM application
Troubleshooting
Connection Issues
- Verify your
APPIAN_TENANTis correct - Ensure your API key is valid and has necessary permissions
- Check that your Appian instance is accessible from your network
Authentication Errors
- Verify credentials in your
.envfile - Check that the API key hasn't expired
- Confirm proper authentication method is configured
Build Errors
- Ensure TypeScript is installed:
npm install - Check for TypeScript compilation errors:
npm run build
License
MIT
Resources
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。